結果
問題 | No.1668 Grayscale |
ユーザー | noimi |
提出日時 | 2021-06-10 02:56:40 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,178 bytes |
コンパイル時間 | 1,982 ms |
コンパイル使用メモリ | 206,940 KB |
実行使用メモリ | 19,664 KB |
最終ジャッジ日時 | 2024-12-15 08:45:27 |
合計ジャッジ時間 | 4,809 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 26 ms
11,488 KB |
testcase_04 | WA | - |
testcase_05 | AC | 26 ms
11,616 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 78 ms
15,568 KB |
testcase_09 | AC | 379 ms
19,664 KB |
testcase_10 | AC | 252 ms
15,544 KB |
testcase_11 | AC | 26 ms
11,744 KB |
testcase_12 | AC | 28 ms
13,480 KB |
testcase_13 | AC | 41 ms
11,744 KB |
testcase_14 | AC | 81 ms
12,260 KB |
testcase_15 | AC | 64 ms
11,624 KB |
testcase_16 | AC | 53 ms
13,668 KB |
testcase_17 | AC | 36 ms
11,752 KB |
testcase_18 | AC | 26 ms
11,612 KB |
testcase_19 | AC | 26 ms
11,616 KB |
testcase_20 | AC | 26 ms
11,620 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int h, w, n, a[1010][1010], dp[1 << 20], nxt[1 << 20], v[1 << 20]; int main() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); cin >> h >> w >> n; for(int i = 0; i < h; i++) for(int j = 0; j < w; j++) cin >> a[i][j]; for(int i = 0; i < h; i++) for(int j = 0; j < w; j++) v[i * w + j] = a[i][j]; sort(begin(v), end(v)); unique(begin(v), end(v)); for(int i = 0; i < h; i++) for(int j = 0; j < w; j++) a[i][j] = lower_bound(begin(v), begin(v) + n, a[i][j]) - begin(v); dp[0] = 1; for(int i = 0; i < n; i++) nxt[i] = n; for(int i = 0; i < h - 1; i++) for(int j = 0; j < w; j++) { auto [x, y] = minmax(a[i][j], a[i + 1][j]); if(x != y) nxt[x] = min(nxt[x], y); } for(int i = 0; i < h; i++) for(int j = 0; j < w - 1; j++) { auto [x, y] = minmax(a[i][j], a[i][j + 1]); if(x != y) nxt[x] = min(nxt[x], y); } for(int i = 0; i < n; i++) { dp[i + 1] = max(dp[i + 1], dp[i]); if(nxt[i] != n) dp[nxt[i]] = max(dp[nxt[i]], dp[i] + 1); } cout << dp[n] << endl; }