Chri_K

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

2020年9月18日

noip2014d1t1(生活大爆炸版石头剪刀布)

摘要: #include<iostream>using namespace std;int n,a1,b1,xa,xb;int a[210],b[210];int mac[5][5]={{0,0,1,1,0},{1,0,0,1,0},{0,1,0,0,1},{0,0,1,0,1},{1,1,0,0,0}}; 阅读全文

posted @ 2020-09-18 11:56 Chri_K 阅读(102) 评论(0) 推荐(0) 编辑
noip2017d1t1(小凯的疑惑)

摘要: //同余方程 #include<iostream>#include<cstdio>using namespace std;int main(){ long long a,b,x; cin>>a>>b; x=a*b-a-b; cout<<x<<endl; return 0;} 阅读全文

posted @ 2020-09-18 09:50 Chri_K 阅读(112) 评论(0) 推荐(0) 编辑

2020年9月17日

noip2015d1t1(神奇的幻方)

摘要: #include<iostream>#include<cmath>using namespace std;int n;int a[40][40];int main(){ cin>>n; int k=n*n; int mid=(n+1)/2; a[1][mid]=1; int x=1,y=mid; f 阅读全文

posted @ 2020-09-17 11:18 Chri_K 阅读(131) 评论(0) 推荐(0) 编辑
noip2016d1t1(玩具谜题)

摘要: #include<iostream>#include<cstdio>#include<cstring>using namespace std;int main(){ string a[100001]; int b[100001],q[100001],w[100001]; int m,n,k=1; c 阅读全文

posted @ 2020-09-17 10:02 Chri_K 阅读(126) 评论(0) 推荐(0) 编辑

2020年9月16日

noip2018d1t1(铺设道路)

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

posted @ 2020-09-16 12:07 Chri_K 阅读(96) 评论(0) 推荐(0) 编辑
csp2019d1t1

摘要: #include<iostream>#include<cstdio>#include<cmath>using namespace std;#define ull unsigned long longull a[70];int main() { for(int i=0;i<=64;i++) { a[i 阅读全文

posted @ 2020-09-16 12:06 Chri_K 阅读(113) 评论(0) 推荐(0) 编辑

2020年9月12日

P1007(洛谷过了,内网不过。。。)

摘要: #include<stdio.h>int main(){ int i,A[1005]={0},B[1005]={0},n,j; scanf("%d", &n); A[0]=B[0]=1; for (i=2;i<=n;i++){ for (j=0;j<100;j++) B[j]*=i; for (j= 阅读全文

posted @ 2020-09-12 10:35 Chri_K 阅读(109) 评论(0) 推荐(0) 编辑

2020年9月10日

P1067

摘要: //类似冒泡排序 #include<iostream>#include<cstring>using namespace std;int main(){ int n; cin>>n; string a[30]; for(int i=1;i<=n;i++) { cin>>a[i]; } for(int 阅读全文

posted @ 2020-09-10 08:28 Chri_K 阅读(109) 评论(0) 推荐(0) 编辑

2020年9月9日

P1102-P1103

摘要: //01背包 // #include <iostream>// #include <algorithm>// using namespace std;// int tim[101];// int val[101];// int f[1001];// int main()// {// int t,m; 阅读全文

posted @ 2020-09-09 17:58 Chri_K 阅读(111) 评论(0) 推荐(0) 编辑
P1091,P1017

摘要: //01背包 #include <cstdio> #include <algorithm> using namespace std; int v,n,tj[30],dp[21000],maxn; int main() { scanf("%d%d",&v,&n); for (int i = 1;i < 阅读全文

posted @ 2020-09-09 17:51 Chri_K 阅读(143) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页