记录编号 |
422287 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[BYVoid S3] 艾萨拉的激流 |
最终得分 |
100 |
用户昵称 |
实力演员阵容 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.220 s |
提交时间 |
2017-07-09 14:34:02 |
内存使用 |
34.62 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <vector>
using namespace std;
int h[10000][1000]={0};
int main(){
freopen("azshara.in","r",stdin);
freopen("azshara.out","w",stdout);
int W,L;
cin>>W>>L;
for(int i=0;i<L;i++){
for(int j=0;j<W;j++){
scanf("%d",&h[i][j]);
}
}
for(int i=1;i<L;i++){
for(int j=0;j<W;j++){
if(h[i][j]!=-1){
int max1=0,max2=0,max3=0;
if(j-1>=0)
max1=h[i-1][j-1];
if(j+1<W)
max2=h[i-1][j+1];
max3=h[i-1][j];
h[i][j]+=max(max1,max(max2,max3));
}
}
}
int maxx=0;
for(int i=0;i<W;i++){
if(h[L-1][i]>maxx)
maxx=h[L-1][i];
}
cout<<maxx;
return 0;
}