码迷,mamicode.com
首页 >  
搜索关键字:nyoj613    ( 2个结果
nyoj 18 The Triangle 动态规划
和nyoj613(免费馅饼)一样的原理  从下 网上依次遍历 存贮最大值 #include #include using namespace std; int main() { int n,num[105][105]={0}; scanf("%d",&n); for(int i=1;i<=n;i++) for(int j=1;j<=i;j++) scanf("%d",&num[i]...
分类:其他好文   时间:2015-04-25 21:18:00    阅读次数:148
nyoj613 免费馅饼 动态规划
//就想象成t行11列的数,从下往上遍历相加,找最大值。#include #include int dp[100005][13]; int Max(int a,int b,int c) { int max=a; if(max<b) max=b; if(max<c) max=c; return max; } int main() { int n,x,t,max; while(sc...
分类:其他好文   时间:2015-04-19 21:26:41    阅读次数:149
2条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!