結果

問題 No.697 池の数はいくつか
ユーザー はにはにはにはに
提出日時 2025-01-06 23:17:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 838 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 817,624 KB
最終ジャッジ日時 2025-01-06 23:18:02
合計ジャッジ時間 52,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,188 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 26 ms
10,240 KB
testcase_05 AC 26 ms
10,368 KB
testcase_06 AC 26 ms
10,240 KB
testcase_07 AC 27 ms
10,112 KB
testcase_08 AC 26 ms
10,240 KB
testcase_09 AC 26 ms
10,368 KB
testcase_10 AC 26 ms
10,240 KB
testcase_11 AC 30 ms
10,240 KB
testcase_12 AC 28 ms
10,368 KB
testcase_13 AC 26 ms
10,368 KB
testcase_14 AC 26 ms
10,112 KB
testcase_15 AC 27 ms
10,240 KB
testcase_16 AC 26 ms
10,368 KB
testcase_17 AC 26 ms
10,368 KB
testcase_18 AC 26 ms
10,368 KB
testcase_19 AC 26 ms
10,112 KB
testcase_20 AC 26 ms
10,368 KB
testcase_21 AC 25 ms
10,240 KB
testcase_22 AC 27 ms
10,368 KB
testcase_23 AC 25 ms
10,240 KB
testcase_24 AC 2,843 ms
119,536 KB
testcase_25 AC 2,891 ms
119,588 KB
testcase_26 AC 2,834 ms
119,452 KB
testcase_27 AC 2,893 ms
119,400 KB
testcase_28 AC 2,895 ms
119,484 KB
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 = [list(input().split()) for _ in range(h)]

sensor = set()
q = deque()
visited = set()
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 (nx, ny) not in visited and grid[ny][nx] == '1':
                visited.add((nx, ny))
                q.append((nx, ny))
                
    count += 1
print(count)
0