結果
問題 | No.1668 Grayscale |
ユーザー | Kude |
提出日時 | 2021-09-03 22:43:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 671 bytes |
コンパイル時間 | 1,051 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 203,136 KB |
最終ジャッジ日時 | 2024-05-09 05:43:22 |
合計ジャッジ時間 | 6,025 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
52,224 KB |
testcase_02 | AC | 42 ms
51,712 KB |
testcase_03 | AC | 41 ms
52,352 KB |
testcase_04 | WA | - |
testcase_05 | AC | 42 ms
51,968 KB |
testcase_06 | WA | - |
testcase_07 | AC | 437 ms
203,136 KB |
testcase_08 | AC | 168 ms
85,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 42 ms
51,840 KB |
testcase_19 | AC | 42 ms
51,968 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 43 ms
52,096 KB |
testcase_23 | AC | 43 ms
52,096 KB |
ソースコード
h, w, n = map(int, input().split()) c = [list(map(int, input().split())) for _ in range(h)] for i in range(h): for j in range(w): c[i][j] -= 1 to = [[] for _ in range(n)] for i in range(h - 1): for j in range(w): x = c[i][j] y = c[i + 1][j] if x < y: to[x].append(y) elif x > y: to[y].append(x) for i in range(h): for j in range(w - 1): x = c[i][j] y = c[i][j + 1] if x < y: to[x].append(y) elif x > y: to[y].append(x) dp = [0] * n for i in range(n): for j in to[i]: dp[j] = max(dp[j], dp[i] + 1) ans = max(dp) print(ans + 1)