結果

問題 No.1668 Grayscale
ユーザー noiminoimi
提出日時 2021-06-10 02:57:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 424 ms / 4,000 ms
コード長 1,170 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 206,992 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-05-09 00:35:08
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 192 ms
19,200 KB
testcase_07 AC 211 ms
19,072 KB
testcase_08 AC 88 ms
11,392 KB
testcase_09 AC 424 ms
18,944 KB
testcase_10 AC 281 ms
11,392 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
7,168 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 69 ms
6,528 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 37 ms
6,528 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 5 ms
6,528 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(v, v + h * w);
    unique(v, v + h * w);
    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;
}
0