poj3176
Posted 发牌员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj3176相关的知识,希望对你有一定的参考价值。
贼水的dp,看成输出Hint了,,还存了好大的数组。。。。。浪费时间
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn=350+10; int mapp[maxn][maxn]; int dp[maxn][maxn]; int n; int dfs(int x,int y) { if(dp[x][y]!=-1) return dp[x][y]; if(x==n-1) return mapp[x][y]; dp[x][y]=max(dfs(x+1,y),dfs(x+1,y+1))+mapp[x][y]; return dp[x][y]; } int main() { scanf("%d",&n); for(int i=0; i<n; i++) for(int j=0; j<=i; j++) scanf("%d",&mapp[i][j]); memset(dp,-1,sizeof(dp)); printf("%d\n",dfs(0,0)); return 0; }
以上是关于poj3176的主要内容,如果未能解决你的问题,请参考以下文章