#include<bits/stdc++.h>
#define IOS ios_base::sync_with_stdio(false);cin.tie();cout.tie();
#define all(x) x.begin(), x.end()
#define lnl long long
#define pq priority_queue
#define eb emplace_back
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define pp pop_back
#define F first
#define S second
using namespace std;
lnl dis[31][31];
char c[31][31];
int x, y;
void build() {
dis[0][0] = 1;
for (int i = 0; i <= 30; i++) {
for (int j = 0; j <= 30; j++) {
if (i) dis[i][j] += dis[i-1][j];
if (j) dis[i][j] += dis[i][j-1];
}
}
}
void init() {
cin >> x >> y; x--; y--;
for (int i = x; i >= 0; i--)
for (int j = y; j >= 0; j--)
cin >> c[i][j];
}
void solve () {
build();
init();
lnl k; cin >> k;
string ans = "";
while (x || y) {
ans += c[x][y];
if (!x) {y--; continue ;}
if (!y) {x--; continue ;}
if (c[x][y-1] <= c[x-1][y]) {
if (dis[x][y-1] >= k) {y--;}
else {x--; k -= dis[x][y];}
}
else {
if (dis[x-1][y] >= k) {x--;}
else {y--; k -= dis[x][y];}
}
}
ans += c[0][0];
cout << ans;
}
int main() {IOS solve(); return 0;}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |