結果

問題 No.1668 Grayscale
ユーザー noiminoimi
提出日時 2021-08-31 01:13:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,062 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 137,164 KB
最終ジャッジ日時 2024-05-09 00:52:19
合計ジャッジ時間 15,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
134,092 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 29 ms
11,008 KB
testcase_06 AC 3,629 ms
137,164 KB
testcase_07 AC 3,569 ms
137,148 KB
testcase_08 AC 1,702 ms
35,328 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
def solve():
    h, w, n = map(int, input().split())
    a = [list(map(int, input().split())) for _ in range(h)]
    v = [a[i][j] for i in range(h) for j in range(w)]

    v = sorted(v)
    v = list(set(v))
    
    for i in range(h):
        for j in range(w):
            a[i][j] = bisect.bisect_left(v, a[i][j])
    
    dp = [0 for _ in range(n + 1)]
    
    dp[0] = 1
    
    nxt = [n for _ in range(n + 1)]
    
    for i in range(h - 1):
        for j in range(w):
            x = min(a[i][j], a[i + 1][j])
            y = max(a[i][j], a[i + 1][j])
            if x != y:
                nxt[x] = min(nxt[x], y)
    
    for i in range(h):
        for j in range(w - 1):
            x = min(a[i][j], a[i][j + 1])
            y = max(a[i][j], a[i][j + 1])
            if x != y:
                nxt[x] = min(nxt[x], y)
    
    for i in range(n):
        dp[i + 1] = max(dp[i + 1], dp[i])
        if nxt[i] != n:
            dp[nxt[i]] = max(dp[nxt[i]], dp[i] + 1)
            
    print(dp[n])
    


if __name__ == '__main__':
    solve()
0