結果
問題 | No.2855 Move on Grid |
ユーザー | ochiaigawa |
提出日時 | 2024-08-25 13:56:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,059 bytes |
コンパイル時間 | 2,116 ms |
コンパイル使用メモリ | 207,364 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-25 13:56:13 |
合計ジャッジ時間 | 4,291 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 7 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | AC | 12 ms
6,944 KB |
testcase_11 | AC | 12 ms
6,940 KB |
testcase_12 | AC | 13 ms
6,944 KB |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 12 ms
6,940 KB |
testcase_15 | AC | 13 ms
6,944 KB |
testcase_16 | AC | 12 ms
6,944 KB |
testcase_17 | AC | 11 ms
6,944 KB |
testcase_18 | AC | 12 ms
6,940 KB |
testcase_19 | AC | 12 ms
6,940 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 | AC | 23 ms
6,944 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") using namespace std; const int MAX = 1000000000; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); 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 < M; j++) { cin >> A[i][j]; } } if(K >= N + M - 1) { cout << MAX << '\n'; } else { int ok = 1, ng = MAX + 1; while(ng - ok > 1) { int mid = (ok + ng) >> 1; vector<vector<int>> dp(N, vector<int>(M, MAX)); dp[0][0] = A[0][0] < mid; for(int i = 0; i < N; i++) { for(int j = 0; j < M; j++) { if(i > 0) { dp[i][j] = min(dp[i][j], dp[i - 1][j] + (A[i][j] < mid)); } if(j > 0) { dp[i][j] = min(dp[i][j], dp[i][j - 1] + (A[i][j] < mid)); } } } if(dp.back().back() <= K) { ok = mid; } else { ng = mid; } } cout << ok << '\n'; } return 0; }