摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1087View Code 1 #include<stdio.h> 2 #include<math.h> 3 int a[1100], dp[1100] ; 4 int main() 5 { 6 int n, i, j, max , m ; 7 while(scanf("%d", &n),n!=0) 8 { 9 for(i=0; i<n; i++)10 scanf("%d", &a[i]) ;11 dp[0] = 0 ;12 阅读全文
posted @ 2013-01-30 20:00 yelan@yelan 阅读(108) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1159View Code 1 #include<iostream> 2 #include<cstring> 3 using namespace std ; 4 char str1[10000] ; 5 char str2[10000] ; 6 int c[10000][10000] ; 7 int main() 8 { 9 int len1, len2, i, j ;10 while(cin>>str1>>str2)11 {12 len1 = strlen(st 阅读全文
posted @ 2013-01-30 19:57 yelan@yelan 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=1299View Code 1 #include<stdio.h> 2 #include<string.h> 3 #define Max 1000 4 int b[Max+10] ; 5 int maxlen[Max+10] ; 6 int main() 7 { 8 int m, n, i, j ; 9 scanf("%d", &n) ;10 for(i=1; i<=n; i++)11 s 阅读全文
posted @ 2013-01-30 19:48 yelan@yelan 阅读(113) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2084View Code 1 #include<stdio.h> 2 int main() 3 { 4 int C, n, i, j ; 5 int a[110][110], dp[110][110] ; 6 scanf("%d", &C) ; 7 while(C--) 8 { 9 scanf("%d", &n) ;10 for(i=1; i<=n; i++)11 for(j=1; j<=i; j++)12 ... 阅读全文
posted @ 2013-01-30 19:45 yelan@yelan 阅读(153) 评论(0) 推荐(0) 编辑