# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
104148 | leonarda | Pohlepko (COCI16_pohlepko) | C++14 | 83 ms | 66560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
const int maxn = 2000 + 5;
int n, m;
char a[maxn][maxn];
string dp[maxn][maxn];
int nadi(string s, string t) {
for(int i = 0; i < s.size(); ++i)
if(s[i] != t[i])
return i;
return -1; //stringovi su isti
}
int main ()
{
ios::sync_with_stdio(0);
cin >> n >> m;
for(int i = 0; i < n; ++i)
for(int j = 0; j < m; ++j)
cin >> a[i][j];
dp[0][0].pb(a[0][0]);
for(int i = 1; i < m; ++i)
dp[0][i] = dp[0][i - 1] + a[0][i];
for(int i = 1; i < n; ++i)
dp[i][0] = dp[i - 1][0] + a[i][0];
for(int i = 1; i < n; ++i) {
for(int j = 1; j < m; ++j) {
string s = dp[i - 1][j];
string t = dp[i][j - 1];
int raz = nadi(s, t);
if(raz == -1)
dp[i][j] = s + a[i][j];
else {
if(s[raz] < t[raz])
dp[i][j] = s + a[i][j];
else
dp[i][j] = t + a[i][j];
}
}
}
cout << dp[n - 1][m - 1];
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |