摘要: 1 //与数塔一样dp递推即可 2 #include 3 #include 4 5 int a[100005][11]; 6 7 int Max(int a,int b) 8 { 9 return a>b?a:b; 10 } 11 12 int Max(int a,int b,int c) 13 { 14 return Max(a,b)>c?Max(a,b... 阅读全文
posted @ 2017-04-03 21:26 Posase 阅读(188) 评论(0) 推荐(0) 编辑