結果
問題 | No.1668 Grayscale |
ユーザー | hir355 |
提出日時 | 2021-09-03 23:07:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 973 ms / 4,000 ms |
コード長 | 785 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 210,688 KB |
最終ジャッジ日時 | 2024-05-09 06:41:24 |
合計ジャッジ時間 | 5,007 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,096 KB |
testcase_01 | AC | 36 ms
51,968 KB |
testcase_02 | AC | 35 ms
52,224 KB |
testcase_03 | AC | 35 ms
52,224 KB |
testcase_04 | AC | 36 ms
51,968 KB |
testcase_05 | AC | 37 ms
52,224 KB |
testcase_06 | AC | 384 ms
210,524 KB |
testcase_07 | AC | 399 ms
210,688 KB |
testcase_08 | AC | 142 ms
84,820 KB |
testcase_09 | AC | 973 ms
194,608 KB |
testcase_10 | AC | 413 ms
131,712 KB |
testcase_11 | AC | 38 ms
52,864 KB |
testcase_12 | AC | 70 ms
72,192 KB |
testcase_13 | AC | 110 ms
80,928 KB |
testcase_14 | AC | 226 ms
97,684 KB |
testcase_15 | AC | 168 ms
86,068 KB |
testcase_16 | AC | 136 ms
79,744 KB |
testcase_17 | AC | 119 ms
79,360 KB |
testcase_18 | AC | 35 ms
51,968 KB |
testcase_19 | AC | 36 ms
52,224 KB |
testcase_20 | AC | 53 ms
64,896 KB |
testcase_21 | AC | 72 ms
73,344 KB |
testcase_22 | AC | 36 ms
52,480 KB |
testcase_23 | AC | 35 ms
52,224 KB |
ソースコード
h, w, n = map(int, input().split()) a = [list(map(int, input().split())) for _ in range(h)] inv = [0] * n g = [[] for _ in range(n)] for i in range(h): for j in range(w): if i < h - 1: if a[i][j] < a[i + 1][j]: g[a[i][j] - 1].append(a[i + 1][j] - 1) elif a[i][j] > a[i + 1][j]: g[a[i + 1][j] - 1].append(a[i][j] - 1) if j < w - 1: if a[i][j] < a[i][j + 1]: g[a[i][j] - 1].append(a[i][j + 1] - 1) elif a[i][j] > a[i][j + 1]: g[a[i][j + 1] - 1].append(a[i][j] - 1) d = [0] * n for p in range(n): if p > 0 and d[p] < d[p - 1]: d[p] = d[p - 1] for node in g[p]: if d[node] < d[p] + 1: d[node] = d[p] + 1 print(max(d) + 1)