結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:14:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 849,352 KB
最終ジャッジ日時 2025-01-06 23:15:44
合計ジャッジ時間 72,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
215,060 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 MLE -
testcase_07 WA -
testcase_08 MLE -
testcase_09 AC 34 ms
54,732 KB
testcase_10 MLE -
testcase_11 WA -
testcase_12 AC 35 ms
54,836 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
54,328 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
54,240 KB
testcase_23 WA -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
grid = [input().split() for _ in range(h)]

sensor = []
for j in range(h):
    for i in range(w):
        if grid[j][i] == '1':
            sensor.append((i, j))

visited = set()
count = 0

while sensor:
    q = deque()
    q.append(sensor[0])
    sensor.pop(0)
    
    while q:
        x, y = q.popleft()
        
        if (x, y) in visited:
           continue
        
        visited.add((x, y))
        
        for dx, dy in [(0, 1), (0, -1), (1, 0), (-1, 0)]:
            nx, ny = x + dx, y + dy
            if 0 <= nx < w and 0 <= ny < h:
               if grid[ny][nx] == '1' and (nx,ny) not in visited:
                  q.append((nx, ny))

    count += 1
print(count)
0