結果

問題 No.1668 Grayscale
ユーザー noiminoimi
提出日時 2021-06-10 02:54:41
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 210,568 KB
実行使用メモリ 19,344 KB
最終ジャッジ日時 2024-12-15 08:45:16
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,520 KB
testcase_01 WA -
testcase_02 AC 2 ms
7,520 KB
testcase_03 AC 3 ms
7,516 KB
testcase_04 AC 3 ms
7,524 KB
testcase_05 AC 2 ms
7,516 KB
testcase_06 AC 191 ms
19,216 KB
testcase_07 AC 212 ms
19,216 KB
testcase_08 AC 86 ms
14,436 KB
testcase_09 AC 434 ms
19,344 KB
testcase_10 WA -
testcase_11 AC 3 ms
7,528 KB
testcase_12 AC 5 ms
10,000 KB
testcase_13 AC 22 ms
7,748 KB
testcase_14 AC 73 ms
8,792 KB
testcase_15 AC 49 ms
8,088 KB
testcase_16 AC 37 ms
9,756 KB
testcase_17 AC 17 ms
9,712 KB
testcase_18 WA -
testcase_19 AC 3 ms
7,520 KB
testcase_20 AC 4 ms
7,536 KB
testcase_21 AC 5 ms
9,584 KB
testcase_22 AC 3 ms
7,516 KB
testcase_23 AC 3 ms
7,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int h, w, n, a[1010][1010], dp[1 << 20], nxt[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];
    vector<int> v;
    v.reserve(h * w);
    for(int i = 0; i < h; i++)
        for(int j = 0; j < w; j++) v.emplace_back(a[i][j]);
    sort(begin(v), end(v));
    v.erase(unique(begin(v), end(v)), end(v));
    for(int i = 0; i < h; i++)
        for(int j = 0; j < w; j++) a[i][j] = lower_bound(begin(v), end(v), 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]);
            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]);
            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;
}
0