果枫-国峰

2012年9月6日

hdu 1228 A+B

摘要: 题意:如题。ac代码:#include<iostream>#include<string>using namespace std;int change(string ch){ /*switch(ch) { case "zero":return 0; }*/ if(ch=="zero") return 0; if(ch=="one") return 1; if(ch=="two") return 2; if(ch=="three") return 3; if(ch==&qu 阅读全文

posted @ 2012-09-06 16:26 果枫-国峰 阅读(233) 评论(0) 推荐(0) 编辑

hdu 1003 Max Sum

摘要: 题意:输出最大子序列和。解法:DPac代码:#include<iostream>using namespace std;#define mem(x,y) memset(x,y,sizeof(x));const int M=100099;int a[M];//存储输入的数int sum[M];//sum[i]代表第i个为结尾的最大和int front[M];//front[i]代表以i为结尾的最大子串和的起始位置int main(){ int t; cin>>t; int l=1; while(t--) { mem(sum,0);mem(front,0... 阅读全文

posted @ 2012-09-06 15:28 果枫-国峰 阅读(173) 评论(0) 推荐(0) 编辑

导航