#ifdef ONLINE_JUDGE
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#endif
#include <bits/stdc++.h>
#define speed \
ios_base::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define precision \
cout.precision(30); \
cerr.precision(10);
#define ll long long
#define ld long double
#define pb(x) push_back(x)
#define sz(x) (int)x.size()
#define mp(x, y) make_pair(x, y)
#define all(x) x.begin(), x.end()
#define pc(x) __builtin_popcount(x)
#define pcll(x) __builtin_popcountll(x)
#define F first
#define S second
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
void ioi(string name) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
ll n, m, k, a[35][35], b[65], dp[35][35], pd[35][35];
ll ok() {
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++) dp[i][j] = pd[i][j] = 0;
pd[n][m] = 1;
for (int i = n; i >= 1; i--) {
for (int j = m; j >= 1; j--) {
if (1 <= i - 1) pd[i - 1][j] += pd[i][j];
if (1 <= j - 1) pd[i][j - 1] += pd[i][j];
}
}
dp[1][1] = (a[1][1] == b[1]);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (i + 1 <= n && b[i + j] == a[i + 1][j]) dp[i + 1][j] += dp[i][j];
if (j + 1 <= m && b[i + j] == a[i][j + 1]) dp[i][j + 1] += dp[i][j];
}
}
ll res = dp[n][m];
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (i + 1 <= n && b[i + j] > a[i + 1][j]) res += dp[i][j] * pd[i + 1][j];
if (j + 1 <= m && b[i + j] > a[i][j + 1]) res += dp[i][j] * pd[i][j + 1];
}
}
return res;
}
int main() {
speed;
precision;
// code
cin >> n >> m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
char x;
cin >> x;
a[i][j] = x - 'a';
}
}
cin >> k;
for (int i = 1; i <= n + m - 1; i++) b[i] = 25;
for (int i = 1; i <= n + m - 1; i++) {
b[i] = 0;
while (ok() < k) b[i]++;
cout << char('a' + b[i]);
}
// endl
#ifndef ONLINE_JUDGE
cerr << "\nTime elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n";
#endif
return 0;
}
Compilation message
kthpath.cpp: In function 'void ioi(std::string)':
kthpath.cpp:26:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | freopen((name + ".in").c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
kthpath.cpp:27:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
27 | freopen((name + ".out").c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
368 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
2 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
340 KB |
Output is correct |
10 |
Correct |
2 ms |
340 KB |
Output is correct |
11 |
Correct |
1 ms |
340 KB |
Output is correct |
12 |
Correct |
4 ms |
340 KB |
Output is correct |
13 |
Correct |
4 ms |
340 KB |
Output is correct |
14 |
Correct |
4 ms |
340 KB |
Output is correct |
15 |
Correct |
8 ms |
340 KB |
Output is correct |
16 |
Correct |
6 ms |
352 KB |
Output is correct |
17 |
Correct |
7 ms |
340 KB |
Output is correct |
18 |
Correct |
8 ms |
336 KB |
Output is correct |
19 |
Correct |
7 ms |
340 KB |
Output is correct |
20 |
Correct |
9 ms |
340 KB |
Output is correct |