# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
445693 | iulia13 | K-th path (IZhO11_kthpath) | C++14 | 62 ms | 280 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define f first
#define s second
const int N = 50;
char a[N][N];
ll ways[N][N];
int main()
{
freopen ("kthpath.in", "r", stdin);
freopen ("kthpath.out", "w", stdout);
int n, m, i, j;
cin >> n >> m;
for (i = 1; i <= n; i++)
cin >> a[i] + 1;
ways[n][m] = 1;
for (i = n; i; i--)
for (j = m; j; j--)
if (!(i == n && j == m))
ways[i][j] = ways[i][j + 1] + ways[i + 1][j];
i = 1, j = 1;
ll k;
cin >> k;
cout << a[i][j];
while (!(i == n && j == m))
{
if (i != n && j != m)
{
pair <int, int> minloc = {i + 1, j};
if (a[i + 1][j] > a[i][j + 1])
minloc = {i, j + 1};
if (k > ways[minloc.f][minloc.s])
{
k -= ways[minloc.f][minloc.s];
i = 2 * i + 1 - minloc.f;
j = 2 * j + 1 - minloc.s;
}
else
{
i = minloc.f;
j = minloc.s;
}
}
else
if (i == n)
j++;
else
i++;
cout << a[i][j];
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |