# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
445693 | iulia13 | K-th path (IZhO11_kthpath) | C++14 | 62 ms | 280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |