# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
238311 | marlicu | Pohlepko (COCI16_pohlepko) | C++14 | 54 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e3 + 5;
int n, m;
char mat[MAXN][MAXN];
string rijeci[MAXN][MAXN];
void popuni() {
for (int x = 0; x < n; x++) {
for (int y = 0; y < m; y++) {
if (!x && !y) {
rijeci[x][y] = mat[x][y];
continue;
}
string s = "z";
if (x) s = rijeci[x - 1][y];
if (y) s = min(s, rijeci[x][y - 1]);
rijeci[x][y] = s + mat[x][y];
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> mat[i][j];
}
}
popuni();
/*
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cout << rijeci[i][j] << " ";
}
cout << '\n';
}
*/
cout << rijeci[n - 1][m - 1];
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |