結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:09:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 82,612 KB
実行使用メモリ 886,808 KB
最終ジャッジ日時 2025-01-06 23:10:12
合計ジャッジ時間 22,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 46 ms
54,804 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 45 ms
54,300 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 MLE -
testcase_31 MLE -
testcase_32 MLE -
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] == 1:
            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, 0)]:
            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