主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Ang
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
39
发帖
1
笔记
0
Ta的粉丝
512
关注数
0
粉丝数
512
获赞数
13
阅读数
372764
思路是用-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
|
赞 0
|
浏览 10.0k
终极变态的题目,复制粘贴大法
#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
|
赞 1
|
浏览 9.5k
偷分
#include<iostream> #include<algorithm> using namespace std; int const maxn=201; int main(){ int n;  ...
P1025
2020年3月6日 21:44
回复 1
|
赞 0
|
浏览 10.3k
1111
#include<iostream> #include<algorithm> #include<cmath> #include<cstring> using namespace std; bool Judge(int a[],int...
P1127
2020年3月15日 16:38
回复 1
|
赞 0
|
浏览 8.9k
拓扑排序的签到题
#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
|
赞 0
|
浏览 13.0k
用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.5k
签到
#include<bits/stdc++.h> using namespace std; bool Find(char c , string s){ for(int i=0;i<s.size();i++){ if(s[i]==c){ ...
P1206
2020年3月20日 10:37
回复 0
|
赞 1
|
浏览 10.3k
set
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; set<string> s; while(n--){ ...
P1603
2020年3月20日 10:14
回复 0
|
赞 1
|
浏览 8.1k
签到
#include<bits/stdc++.h> using namespace std; int dp[2001]; int w[10001]; int v[10001]; int main(){ int n,s; while(cin&...
P1569
2020年3月17日 14:42
回复 0
|
赞 1
|
浏览 9.9k
完全背包例题
#include<bits/stdc++.h> using namespace std; int dp[2001]; int w[101]; int v[101]; int main(){ int n,s; while(cin>&...
P1112
2020年3月17日 14:40
回复 0
|
赞 2
|
浏览 9.2k
1111
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <cstdlib> #include <s...
P1059
2020年3月17日 14:12
回复 0
|
赞 1
|
浏览 8.8k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int maxl=0; int index; for(int i...
P1020
2020年3月17日 13:34
回复 0
|
赞 1
|
浏览 8.6k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int> even; vector<int...
P1010
2020年3月17日 13:25
回复 0
|
赞 0
|
浏览 8.2k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int N; int a[10001]; while(cin>>N){ if(N==0) break; for(int ...
P1181
2020年3月15日 16:49
回复 0
|
赞 0
|
浏览 7.6k
111
#include<bits/stdc++.h> using namespace std; int main() { int s,n; while(cin>>s>>n) { int a[1001][101]...
P1567
2020年3月14日 19:57
回复 0
|
赞 0
|
浏览 8.7k
签到题
#include<bits/stdc++.h> using namespace std; int const maxn=1000001; int const p=1e9+7; int dp[maxn]; int main(){ dp[0]=0; d...
P1685
2020年3月14日 19:20
回复 0
|
赞 1
|
浏览 10.0k
直接套用01背包的公式就好了
#include<bits/stdc++.h> using namespace std; int const maxn = 10000; int dp[maxn]; int w[maxn]; int main(){ int s,n; while...
P1035
2020年3月14日 19:07
回复 0
|
赞 0
|
浏览 11.0k
这么一题压轴是没有想到
#include<bits/stdc++.h> using namespace std; char a[101][101]; int main(){ int pos=0; string str; int s; while(c...
P1656
2020年3月14日 14:58
回复 2
|
赞 1
|
浏览 9.8k
手动翻转大法
#include<cstdio> #include<iostream> using namespace std; int arr[5][5]; int main(){ while(cin>>arr[0][0]){ ...
P1376
2020年3月14日 14:08
回复 0
|
赞 1
|
浏览 9.0k
注意cnt=5之后要清零
#include<bits/stdc++.h> using namespace std; int main(){ int N; cin>>N; while(N--){ string str; ...
P1557
2020年3月14日 14:03
回复 0
|
赞 0
|
浏览 8.8k
1
2
本科学校:中国计量大学
目标学校:北京邮电大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!