結果

問題 No.697 池の数はいくつか
ユーザー dice4084dice4084
提出日時 2022-12-27 23:23:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,189 ms / 6,000 ms
コード長 837 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 287,432 KB
最終ジャッジ日時 2024-11-22 10:49:30
合計ジャッジ時間 22,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 52 ms
54,016 KB
testcase_04 AC 46 ms
54,016 KB
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 46 ms
53,836 KB
testcase_08 AC 46 ms
53,760 KB
testcase_09 AC 46 ms
54,144 KB
testcase_10 AC 47 ms
53,888 KB
testcase_11 AC 47 ms
53,376 KB
testcase_12 AC 46 ms
53,632 KB
testcase_13 AC 47 ms
53,888 KB
testcase_14 AC 46 ms
53,760 KB
testcase_15 AC 46 ms
53,632 KB
testcase_16 AC 46 ms
54,016 KB
testcase_17 AC 46 ms
53,632 KB
testcase_18 AC 46 ms
54,272 KB
testcase_19 AC 51 ms
53,888 KB
testcase_20 AC 47 ms
53,760 KB
testcase_21 AC 48 ms
54,016 KB
testcase_22 AC 47 ms
53,632 KB
testcase_23 AC 47 ms
54,144 KB
testcase_24 AC 305 ms
94,464 KB
testcase_25 AC 308 ms
94,208 KB
testcase_26 AC 304 ms
94,336 KB
testcase_27 AC 305 ms
94,336 KB
testcase_28 AC 316 ms
94,464 KB
testcase_29 AC 4,189 ms
287,432 KB
testcase_30 AC 2,478 ms
239,540 KB
testcase_31 AC 3,553 ms
287,228 KB
testcase_32 AC 2,090 ms
239,524 KB
testcase_33 AC 2,011 ms
239,448 KB
testcase_34 AC 1,978 ms
239,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
from itertools import product

h, w = map(int, input().split())
a = [[0]*(w+2)] + [[0] + list(map(int, input().split())) + [0] for _ in range(h)] + [[0]*(w+2)]
arrived = [[False]*(w+2) for _ in range(h+2)]

dyx = ((1, 0), (-1, 0), (0, 1), (0, -1))
ans = 0
for i, j in product(range(1, h+1), range(1, w+1)):
    if a[i][j] == 0:
        continue
    if arrived[i][j]:
        continue

    ans += 1
    q = deque([(i, j)])
    arrived[i][j] = True
    while q:
        y, x = q.popleft()
        for dy, dx in dyx:
            new_y, new_x = (y+dy, x+dx)
            if a[new_y][new_x] == 0:
                continue
            if arrived[new_y][new_x]:
                continue
            q.append((new_y, new_x))
            arrived[new_y][new_x] = True

print(ans)
0