#include <bits/stdc++.h>
using namespace std;
char ch[2000][2000];
string st[2000][2000];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int t=1,r,c;
//cin >> t;
while (t--){
cin >> r >> c;
for (int i = 0; i < r; i++){
for (int j = 0; j < c; j++){
st[i][j] = "";
cin >> ch[i][j];
}
}
st[0][0].push_back(ch[0][0]);
for (int i = 1; i < r; i++){
st[i][0] = st[i-1][0];
st[i][0].push_back(ch[i][0]);
}
for (int j = 1; j < c; j++){
st[0][j] = st[0][j-1];
st[0][j].push_back(ch[0][j]);
}
for (int i = 1; i < r; i++){
for (int j = 1; j < c; j++){
if (st[i-1][j] < st[i][j-1]){
st[i][j] = st[i-1][j];
}
else {
st[i][j] = st[i][j-1];
}
st[i][j].push_back(ch[i][j]);
}
}
cout << st[r-1][c-1] << " ";
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
31 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Runtime error |
31 ms |
65536 KB |
Execution killed with signal 9 |
3 |
Runtime error |
33 ms |
65536 KB |
Execution killed with signal 9 |
4 |
Runtime error |
34 ms |
65536 KB |
Execution killed with signal 9 |
5 |
Runtime error |
33 ms |
65536 KB |
Execution killed with signal 9 |
6 |
Runtime error |
32 ms |
65536 KB |
Execution killed with signal 9 |
7 |
Runtime error |
32 ms |
65536 KB |
Execution killed with signal 9 |
8 |
Runtime error |
34 ms |
65536 KB |
Execution killed with signal 9 |
9 |
Runtime error |
32 ms |
65536 KB |
Execution killed with signal 9 |
10 |
Runtime error |
33 ms |
65536 KB |
Execution killed with signal 9 |
11 |
Runtime error |
31 ms |
65536 KB |
Execution killed with signal 9 |
12 |
Runtime error |
33 ms |
65536 KB |
Execution killed with signal 9 |
13 |
Runtime error |
32 ms |
65536 KB |
Execution killed with signal 9 |
14 |
Runtime error |
34 ms |
65536 KB |
Execution killed with signal 9 |
15 |
Runtime error |
35 ms |
65536 KB |
Execution killed with signal 9 |
16 |
Runtime error |
39 ms |
65536 KB |
Execution killed with signal 9 |