主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
all-clear
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
5
发帖
0
笔记
0
Ta的粉丝
409
关注数
1
粉丝数
409
获赞数
7
阅读数
52108
贪心
思路:计算所有未被照亮的米所需要的灯数量。 #include<iostream> #include<vector> using namespace std; int main() { int n,m,k; while(c...
P1739
2020年7月14日 23:29
回复 2
|
赞 1
|
浏览 12.3k
字符串哈希表上做前缀和
#include<cstdio> #include<cstring> using namespace std; int pre[50005][26]={}; char s[50005]; int main() { //freopen(...
P1738
2020年6月28日 19:53
回复 2
|
赞 4
|
浏览 13.4k
使用变量模拟栈
#include<iostream> #include<string> using namespace std; int main() { int n; cin>>n; while(n--) { string s; ...
P1067
2020年5月2日 12:16
回复 1
|
赞 1
|
浏览 8.8k
Kruscal模板24ms
Kruscal是采用贪心思想,基于加边策略的MST算法。 用并查集管理顶点之间的连通性。 操作两步走: 1.对所有边按照权重升序进行排序 2.从权重最小的边开始,遍历所有的边,只要两个顶点没有连通,则添加这条边,同时统计权重 #include<cstdi...
P1611
2020年5月1日 12:54
回复 1
|
赞 1
|
浏览 8.1k
好坑的输入
#include<cstdio> #include<cstring> using namespace std; int main() { char str[5000]; while(scanf("%c",&str[0])!=EOF) ...
P1394
2020年4月26日 13:12
回复 0
|
赞 0
|
浏览 9.5k
本科学校:XDU
目标学校:none
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!