摘要: 合唱队形 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 const int N=105; 5 6 int a[N],b[N],c[N]; 7 int main(){ 8 int n,t,maxx=0; 9 cin>> 阅读全文
posted @ 2021-08-14 18:48 Rekord 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 友好城市 1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 using namespace std; 5 const int N=5005; 6 7 struct sn{ 8 int s,n; 9 }; 10 sn r[N 阅读全文
posted @ 2021-08-14 17:35 Rekord 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 挖地雷 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 const int N=205; 5 int a[N][N],c[N],f[N]; 6 int main(){ 7 int n,x,y,t,r,maxx=0; 8 阅读全文
posted @ 2021-08-14 16:58 Rekord 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 城市交通路网 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 const int N=105; 5 int main(){ 6 int n,t=1,a[N][N],c[N],f[N]; 7 cin>>n; 8 for( 阅读全文
posted @ 2021-08-14 16:11 Rekord 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 拦截导弹 1 #include<iostream> 2 using namespace std; 3 const int N=1005; 4 int main(){ 5 int t,r=0,cnt=0,maxx=0,k[N],a[N],b[N]; 6 while(cin>>t){ 7 //第一问:d 阅读全文
posted @ 2021-08-14 12:05 Rekord 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 求最长不下降序列 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 const int N=205; 5 int a[N],b[N]; 6 int main(){ 7 int n,t,maxx=0; 8 cin>>n; 阅读全文
posted @ 2021-08-14 11:36 Rekord 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 数字金字塔 第一道dp,纪念一下!!! 1 #include<iostream> 2 #include<cstdio> 3 using namespace std; 4 const int N=1005; 5 int b[N][N]; 6 int main(){ 7 int n,t; 8 cin>> 阅读全文
posted @ 2021-08-14 11:09 Rekord 阅读(190) 评论(0) 推荐(0) 编辑