首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
Ang
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
39
发帖
1
笔记
0
Ta的粉丝
512
关注数
0
粉丝数
512
获赞数
90
阅读数
382375
思路是用-1替换0,然后用前缀和的思想。主要的技巧是用map存begin,刚开始用两个循环直接炸了
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(cin>>str){ map<int,int> m; ...
P1490
2020年3月13日 18:41
回复 1
|
赞 1
|
浏览 10.2k
终极变态的题目,复制粘贴大法
#include<bits/stdc++.h> using namespace std; string a[10][5]; int main(){ a[0][0]="111"; a[0][1]="101"; a[0][2]="101"; ...
P1488
2020年3月13日 20:51
回复 1
|
赞 12
|
浏览 9.8k
偷分
#include<iostream> #include<algorithm> using namespace std; int const maxn=201; int main(){ int n;  ...
P1025
2020年3月6日 21:44
回复 1
|
赞 0
|
浏览 10.8k
1111
#include<iostream> #include<algorithm> #include<cmath> #include<cstring> using namespace std; bool Judge(int a[],int...
P1127
2020年3月15日 16:38
回复 1
|
赞 2
|
浏览 9.3k
拓扑排序的签到题
#include<bits/stdc++.h> using namespace std; int const MAXN=501; vector<vector<int> > graph(MAXN); int degree[MAXN]={0}...
P1566
2020年3月11日 15:43
回复 1
|
赞 3
|
浏览 13.5k
能A就行
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; struct Node{ int Element; &nbs...
P1015
2020年3月6日 20:36
回复 0
|
赞 0
|
浏览 9.6k
宽度优先搜索
#include<iostream> #include<cstdio> #include<queue> using namespace std; struct status{ int n,t; &...
P1072
2020年3月8日 17:33
回复 1
|
赞 0
|
浏览 10.7k
dijistra,放到一个输入数组里,晚上不让走路的话,把那条输入给跳了,在用一次就好了
#include<iostream> #include<queue> #include<vector> #include<cstring> #include<climits> using name...
P1655
2020年3月9日 19:15
回复 0
|
赞 3
|
浏览 8.7k
宽度优先搜索
#include<iostream> #include<cstdio> #include<queue> using namespace std; struct status{ int n,t; status(int x...
P1072
2020年3月9日 19:44
回复 0
|
赞 0
|
浏览 8.0k
进位的1要保留
#include using namespace std; int main(){ int t; cin>>t; while(t--){ string str; cin>>str; ...
P1647
2020年3月10日 18:17
回复 0
|
赞 5
|
浏览 12.8k
把树看成图,用邻接表的广度优先搜索求解单源最短路
#include<bits/stdc++.h> using namespace std; vector<vector<int> > t(510); int bfs(int a, int b){ vector<bool&g...
P1654
2020年3月10日 18:57
回复 0
|
赞 8
|
浏览 9.1k
用double会有一部分数据过不去,用long long就好了
#include<bits/stdc++.h> using namespace std; int const maxn = 1e6 + 1; long long dp[maxn]; int main(){ int n; while(cin>...
P1172
2020年4月7日 15:27
回复 0
|
赞 0
|
浏览 12.9k
样版题
#include<iostream> #include<cstdio> #include<string> using namespace std; struct node{ char data; node* l; ...
P1561
2020年3月10日 23:12
回复 0
|
赞 2
|
浏览 8.7k
dijistra的样版题
#include<bits/stdc++.h> using namespace std; int const MAXN=10001; int const INF=INT_MAX; struct Edge{ int to; int len;...
P1612
2020年3月11日 00:25
回复 0
|
赞 3
|
浏览 10.4k
考察一下并查集的概念,签到题
#include<bits/stdc++.h> using namespace std; int const MAXN=10001; int father[MAXN]; int height[MAXN]; void Initial(){ for(...
P1586
2020年3月11日 14:54
回复 0
|
赞 2
|
浏览 8.6k
快速幂签到题
#include<bits/stdc++.h> using namespace std; int main(){ long long x,n; cin>>x>>n; long long ans=1; wh...
P1017
2020年3月12日 00:50
回复 0
|
赞 1
|
浏览 11.2k
注意复杂度
#include<bits/stdc++.h> using namespace std; bool sqrt(int x){ bool flag = false; for(int i=1;i*i<=x;i++){ if(i*i==x){ flag...
P1560
2020年3月12日 01:50
回复 0
|
赞 1
|
浏览 9.7k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>m>>n){ if(n==0&&m==...
P1034
2020年3月12日 14:57
回复 0
|
赞 0
|
浏览 7.9k
签到
#include<bits/stdc++.h> using namespace std; int dp[22]; int main(){ dp[0]=0; dp[1]=1; dp[2]=2; dp[3]=4; fo...
P1658
2020年3月12日 16:17
回复 0
|
赞 0
|
浏览 9.4k
枚举签到题
#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ int m; cin&g...
P1556
2020年3月12日 22:17
回复 0
|
赞 1
|
浏览 8.2k
1
2
本科学校:中国计量大学
目标学校:北京邮电大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!