摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1176数塔问题的变形.....(算不上变形吧..View Code 1 #include <stdio.h> 2 #include <string.h> 3 #define maxn 100005 4 int ans[maxn][13], dp[maxn][13]; 5 int max(int a, int b, int c) 6 { 7 return (a > b ? a : b) > c ? (a > b ? a : b) : c; 8 } 9 int main( 阅读全文
posted @ 2012-09-01 16:21 YORU 阅读(144) 评论(0) 推荐(0)