結果
問題 | No.1668 Grayscale |
ユーザー | rlangevin |
提出日時 | 2023-12-05 08:55:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 265,912 KB |
最終ジャッジ日時 | 2024-09-27 00:05:01 |
合計ジャッジ時間 | 10,473 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 46 ms
52,096 KB |
testcase_03 | AC | 47 ms
51,968 KB |
testcase_04 | WA | - |
testcase_05 | AC | 49 ms
51,840 KB |
testcase_06 | WA | - |
testcase_07 | AC | 725 ms
217,216 KB |
testcase_08 | AC | 1,275 ms
265,912 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 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 47 ms
51,968 KB |
testcase_23 | AC | 47 ms
51,968 KB |
ソースコード
import sys input = sys.stdin.readline H, W, N = map(int, input().split()) G = [[] for i in range(N)] for i in range(H): C = list(map(int, input().split())) for j in range(W): G[C[j] - 1].append((i, j)) inf = 10 ** 18 temp = [[-inf] * W for i in range(H)] dx = [1, 0, -1, 0] dy = [0, 1, 0, -1] for i in range(N): dic = dict() for x, y in G[i]: val = 0 for k in range(4): nx = x + dx[k] ny = y + dy[k] if nx < 0 or nx > H - 1 or ny < 0 or ny > W - 1: continue val = max(val, temp[nx][ny] + 1) dic[(x, y)] = val for x, y in G[i]: temp[x][y] = dic[(x, y)] ans = 0 for i in range(H): ans = max(ans, max(temp[i])) print(ans + 1)