Chri_K

上一页 1 ··· 4 5 6 7 8

2020年9月9日

P1097-P1099

摘要: //01背包 #include<iostream> using namespace std; int main() { int v,n; cin>>v>>n; int w,c; int dp[1010]; for(int i=1;i<=n;i++) { cin>>w>>c; for(int j=v; 阅读全文

posted @ 2020-09-09 17:49 Chri_K 阅读(160) 评论(0) 推荐(0) 编辑
P1082

摘要: //思路问题,可以把翻转N-1枚硬币转换为只翻转一枚硬币 #include<iostream> using namespace std; int main() { int n; cin>>n; cout<<n<<endl;//找规律直接输出 int coin[101]; for(int i=1;i< 阅读全文

posted @ 2020-09-09 17:40 Chri_K 阅读(117) 评论(0) 推荐(0) 编辑
P1029-P1030

摘要: #include<iostream> #include<algorithm> using namespace std; int main() { int n; cin>>n; int a[101]; int b[101]; int rest=0; int i; a[0]={0}; for(int i 阅读全文

posted @ 2020-09-09 17:36 Chri_K 阅读(77) 评论(0) 推荐(0) 编辑

2020年9月8日

P1032-P1039

摘要: #include<iostream> #include<algorithm> using namespace std; int main() { int n,k; cin>>n>>k; int a[10001]; for(int i=1;i<=n;i++) { cin>>a[i]; } sort(a 阅读全文

posted @ 2020-09-08 19:17 Chri_K 阅读(99) 评论(0) 推荐(0) 编辑
P1018-P1020

摘要: #include<iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; int sum=0; for(int i=2;i<=sqrt(n);i++) { if(n%i==0) { sum++; } } i 阅读全文

posted @ 2020-09-08 19:14 Chri_K 阅读(96) 评论(0) 推荐(0) 编辑
P1004-1006

摘要: #include<iostream> using namespace std; int main() { int L,M; cin>>L>>M; int st,en; int tree[10001]; int sum=0; for(int i=0;i<=L;i++) { tree[i]={0}; } 阅读全文

posted @ 2020-09-08 10:24 Chri_K 阅读(68) 评论(0) 推荐(0) 编辑
P1000-1003

摘要: #include <iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b<<endl; return 0;} #include <iostream> using namespace std; int main() 阅读全文

posted @ 2020-09-08 10:20 Chri_K 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8