摘要: 一道简单的动态规划题,与http://acm.hdu.edu.cn/showproblem.php?pid=2084数塔思想是一样的,都是从后面往前面推;View Code #include<iostream>#include<cstdio>#include<cstring>using namespace std;int map[100024][12];int sum[100024][12];inline int Max( int a , int b ){ return a > b ?a : b;}int main( ){ int n,place, T 阅读全文
posted @ 2012-03-08 17:09 wutaoKeen 阅读(137) 评论(0) 推荐(0) 编辑