HDU 1231 最大连续子序列 dp
摘要:
//状态方程为c[n] = max(c[n-1]+a[n], a[n])//c[0] = a[0]#include iostream#include stdio.h#define MAX 10005using namespace std; int main(){ int a[MAX]; int c[MAX]; int hold_start[MAX]; //保存起始点 int n; whi... 阅读全文
posted @ 2010-12-14 20:43 sysuwhj 阅读(362) 评论(0) 推荐(0) 编辑