結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:08:10
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 899 bytes
コンパイル時間 1,114 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 1,663,600 KB
最終ジャッジ日時 2025-01-06 23:08:59
合計ジャッジ時間 45,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
54,128 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
54,720 KB
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 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h, w = map(int, input().split())
grid = [list(input()) for _ in range(h)]

sensor = set()
q = deque()
visited = [[False for _ in range(w)] for _ in range(h)]
for j in range(h):
    for i in range(w):
        if grid[j][i] == '#':
            sensor.add((i, j))
count = 0
while sensor:
    q.append(sensor.pop())
    while q:
        x, y = q.popleft()
        if (x, y) in sensor:
            sensor.remove((x, y))
        
        for dx, dy in [(0, 1), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 0), (-1, 1), (-1, -1)]:
            nx, ny = x + dx, y + dy
            if nx < 0 or w <= nx or ny < 0 or h <= ny:
                continue
            if grid[ny][nx] == 0:
                continue
            if not visited[ny][nx] and grid[ny][nx] == 1:
                visited[ny][nx] = True
                q.append((nx, ny))
                
    count += 1
print(count)
0