제출 #43336

#제출 시각아이디문제언어결과실행 시간메모리
43336HassoonyPohlepko (COCI16_pohlepko)C++14
65 / 80
1060 ms14428 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int MX=2009; int n,m; char a[MX][MX]; string ans[2][MX],s1,s2; int main(){ scanf("%d%d",&n,&m); for(int i=0;i<n;i++)scanf("%s",&a[i]); if(m==1){ for(int i=0;i<n;i++)s1+=a[i][0]; cout<<s1<<endl; return 0; } if(n==1){ for(int i=0;i<m;i++)s1+=a[0][i]; cout<<s1<<endl; return 0; } ans[0][m-1]=a[n-1][m-1]; for(int i=m-2;i>=0;i--)ans[0][i]=a[n-1][i]+ans[0][i+1]; for(int i=n-2;i>=0;i--){ for(int j=m-1;j>=0;j--){ if(j==m-1){ ans[1][j]=a[i][j]+ans[0][j]; continue; } ans[1][j]=min(a[i][j]+ans[0][j],a[i][j]+ans[1][j+1]); } for(int j=0;j<MX;j++)ans[0][j]=ans[1][j],ans[1][j]=""; } cout<<ans[0][0]<<endl; }

컴파일 시 표준 에러 (stderr) 메시지

pohlepko.cpp: In function 'int main()':
pohlepko.cpp:11:41: warning: format '%s' expects argument of type 'char*', but argument 2 has type 'char (*)[2009]' [-Wformat=]
     for(int i=0;i<n;i++)scanf("%s",&a[i]);
                                         ^
pohlepko.cpp:10:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d",&n,&m);
                        ^
pohlepko.cpp:11:42: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i=0;i<n;i++)scanf("%s",&a[i]);
                                          ^
#Verdict Execution timeMemoryGrader output
Fetching results...