結果
問題 | No.2855 Move on Grid |
ユーザー | Today03 |
提出日時 | 2024-08-29 13:53:01 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,210 bytes |
コンパイル時間 | 3,042 ms |
コンパイル使用メモリ | 257,288 KB |
実行使用メモリ | 218,880 KB |
最終ジャッジ日時 | 2024-08-29 13:53:17 |
合計ジャッジ時間 | 12,967 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | AC | 508 ms
218,752 KB |
testcase_11 | AC | 504 ms
218,752 KB |
testcase_12 | AC | 534 ms
218,752 KB |
testcase_13 | AC | 501 ms
218,752 KB |
testcase_14 | AC | 538 ms
218,752 KB |
testcase_15 | AC | 504 ms
218,880 KB |
testcase_16 | AC | 567 ms
218,880 KB |
testcase_17 | AC | 514 ms
218,752 KB |
testcase_18 | AC | 503 ms
218,752 KB |
testcase_19 | AC | 528 ms
218,752 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; int main() { int N, M, K; cin >> N >> M >> K; vector<vector<int>> A(N, vector<int>(M)); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cin >> A[i][j]; } } const int inf = 1e9; vector<vector<vector<int>>> dp(N, vector<vector<int>>(M, vector<int>(min(K, N + M) + 1, -inf))); dp[0][0][0] = A[0][0]; dp[0][0][1] = inf; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { for (int k = 0; k <= min(K, N + M); k++) { if (i + 1 < N) { dp[i + 1][j][k] = max(dp[i + 1][j][k], min(dp[i][j][k], A[i + 1][j])); if (k < min(K, N + M)) dp[i + 1][j][k + 1] = max(dp[i + 1][j][k + 1], dp[i][j][k]); } if (j + 1 < M) { dp[i][j + 1][k] = max(dp[i][j][k], min(dp[i][j][k], A[i][j + 1])); if (k < min(K, N + M)) dp[i][j + 1][k + 1] = max(dp[i][j + 1][k + 1], dp[i][j][k]); } } } } cout << ranges::max(dp.back().back()) << endl; }