結果

問題 No.1668 Grayscale
ユーザー rlangevinrlangevin
提出日時 2023-12-05 12:10:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,303 ms / 4,000 ms
コード長 766 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 217,344 KB
最終ジャッジ日時 2024-09-27 00:12:25
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 498 ms
217,088 KB
testcase_07 AC 484 ms
217,344 KB
testcase_08 AC 368 ms
210,516 KB
testcase_09 AC 1,303 ms
214,400 KB
testcase_10 AC 674 ms
139,648 KB
testcase_11 AC 51 ms
61,568 KB
testcase_12 AC 69 ms
67,584 KB
testcase_13 AC 111 ms
84,352 KB
testcase_14 AC 255 ms
101,504 KB
testcase_15 AC 173 ms
86,912 KB
testcase_16 AC 145 ms
83,584 KB
testcase_17 AC 109 ms
81,792 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 63 ms
66,432 KB
testcase_21 AC 80 ms
72,192 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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))

temp = [[0] * W for i in range(H)]
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
ans = 1
que = []
for i in range(N):
    D = []
    val = 0
    for x, y in G[i]:
        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 |= temp[nx][ny]
        D.append((x, y))
    ans += val
    if val:
        for x, y in que:
            temp[x][y] = 0
        que = []
    for x, y in D:
        temp[x][y] = 1

    que.extend(D)

print(ans)
0