上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2066&cid=1158View Code #include #include long long num; int main() { int n,k,T,i ; w... 阅读全文
posted @ 2013-04-20 23:07 yelan@yelan 阅读(323) 评论(0) 推荐(1) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2064&cid=1158View Code #include<stdio.h> long long f(int n) { if(n==0) return 1 ; else return 3*f(n-1); } int main() { int n, t ; scanf("%d", &t) ; while(t--) { scanf("%d", &n) ; printf("... 阅读全文
posted @ 2013-04-20 23:05 yelan@yelan 阅读(280) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2067&cid=1158View Code #include<stdio.h>#include<string.h>#define max(a, b) (a>b?a:b)struct node{ int len, a[1000] ;}dp[251] ;void add(node a, node b, node &c){ int i ; int len = max(a.len, b.len) ; for(i=1; i<=len; i++) c.a 阅读全文
posted @ 2013-04-20 23:02 yelan@yelan 阅读(219) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2065&cid=1158View Code #include<stdio.h>int main(){ int n, i ; int f[31] ; while(scanf("%d", &n)!=EOF) { if(n==-1) break ; f[0] = 1 ; f[2] = 3 ; for(i=4; i<=n; i=i+2) f[i] = 4*f[i-2] - f[i-4] ; ... 阅读全文
posted @ 2013-04-20 16:00 yelan@yelan 阅读(210) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2056&cid=1156View Code #include<stdio.h> #include<stdlib.h> struct node { int num ; struct node *next ; }; struct node *creat(int n) { int i ; struct node *head, *p, *tail ; p = (struct node*)malloc(sizeof(struct node))... 阅读全文
posted @ 2013-04-19 21:41 yelan@yelan 阅读(226) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2062&cid=1157法一:用dp[i][0]、dp[i][1]表示递推到第i位时为0以及非0的情况种数进行dp。View Code #include<stdio.h>int main(){ long long dp[20][2] ; int n, k ; while(scanf("%d %d", &n, &k)!=EOF) { dp[1][1] = k-1 ; dp[1][0] = 0 ; for(int i=2; i<=n.. 阅读全文
posted @ 2013-04-14 15:24 yelan@yelan 阅读(235) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1004View Code #include<iostream>#include<cstring>#include<cstdlib>using namespace std ;struct colorball{ int num ; char colors[16] ;} ;struct colorball a[1000] = {0, ""} ;int cmp(const void *a, const void *b){ return (*(int*)b - * 阅读全文
posted @ 2013-04-13 20:23 yelan@yelan 阅读(199) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1005View Code #include<stdio.h>int main(){ int n, i ; float x, y ; scanf("%d", &n) ; for(i=1; i<=n; i++) { scanf("%f %f", &x, &y) ; float area = 3.14*(x*x + y*y)/2 ; int year = (int)(area/50) + 1 ; printf("Property %d: This prop 阅读全文
posted @ 2013-04-11 18:12 yelan@yelan 阅读(123) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1003View Code #include<stdio.h>int main(){ float c ; while(scanf("%f", &c),c!=0) { int i = 0; float sum = 0 ; while(sum<c) { i++ ; sum += 1.0/(i+1) ; } printf("%d card(s)\n", i) ; } return 0 ;}已知... 阅读全文
posted @ 2013-04-11 14:38 yelan@yelan 阅读(118) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1046View Code #include<stdio.h>#include<math.h>int main(){ int r[16], g[16], b[16] ; int i ; int x, y, z ; int min, s ; for(i=0; i<16; i++) scanf("%d%d%d",&r[i],&g[i],&b[i]) ; while(scanf("%d%d%d",&x,&y,&z)!=EOF) { 阅读全文
posted @ 2013-04-10 21:47 yelan@yelan 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页