1. 程式人生 > >【dp】摘花生

【dp】摘花生

cst algo pan ref tor 喜歡 include 順序 kitty

【題目描述】

Hello Kitty想摘點花生送給她喜歡的米老鼠。她來到一片有網格狀道路的矩形花生地(如下圖),從西北角進去,東南角出來。地裏每個道路的交叉點上都有種著一株花生苗,上面有若幹顆花生,經過一株花生苗就能摘走該它上面所有的花生。Hello Kitty只能向東或向南走,不能向西或向北走。問Hello Kitty最多能夠摘到多少顆花生。

技術分享圖片

【輸入】

第一行是一個整數T,代表一共有多少組數據。1≤T≤100

接下來是T組數據。

每組數據的第一行是兩個整數,分別代表花生苗的行數R和列數 C(1≤R,C≤100)

每組數據的接下來R行數據,從北向南依次描述每行花生苗的情況。每行數據有C個整數,按從西向東的順序描述了該行每株花生苗上的花生數目M(0≤M≤1000)。

【輸出】

對每組輸入數據,輸出一行,內容為Hello Kitty能摘到得最多的花生顆數。

【輸入樣例】

2
2 2
1 1
3 4
2 3
2 3 4
1 6 5

【輸出樣例】

8
16

【來源】

http://ybt.ssoier.cn:8088/problem_show.php?pid=1284

【思路】:很簡單

@liuzitong本體 用時3:56.16

#include<iostream>
#include<cstdio>
#include<algorithm>
#include
<cmath> #include<queue> #include<stack> #include<vector> #include<map> #include<string> #include<cstring> using namespace std; const int maxn=999999999; const int minn=-999999999; inline int read() { char c = getchar(); int x = 0, f = 1;
while(c < 0 || c > 9) { if(c == -) f = -1; c = getchar(); } while(c >= 0 && c <= 9) x = x * 10 + c - 0, c = getchar(); return x * f; } int T,n,m,a[1050][1050],f[105][105]; int main() { cin>>T; while(T--) { for(int i=1; i<=100; ++i) { for(int j=1; j<=100; ++j) { a[i][j]=0; f[i][j]=0; } } cin>>n>>m; for(int i=1; i<=n; ++i) { for(int j=1; j<=m; ++j) { a[i][j]=read(); } } for(int i=1;i<=n;++i) { for(int j=1;j<=m;++j) { f[i][j]=max(f[i-1][j],f[i][j-1])+a[i][j]; } } cout<<f[n][m]<<\n; } return 0; }

【dp】摘花生