結果

問題 No.697 池の数はいくつか
ユーザー dice4084dice4084
提出日時 2022-12-27 23:23:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,769 ms / 6,000 ms
コード長 837 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 287,360 KB
最終ジャッジ日時 2024-05-02 01:28:29
合計ジャッジ時間 22,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 48 ms
53,504 KB
testcase_04 AC 47 ms
53,632 KB
testcase_05 AC 51 ms
53,632 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 51 ms
53,376 KB
testcase_09 AC 47 ms
53,376 KB
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 46 ms
53,888 KB
testcase_12 AC 46 ms
53,376 KB
testcase_13 AC 46 ms
53,504 KB
testcase_14 AC 46 ms
53,632 KB
testcase_15 AC 45 ms
53,504 KB
testcase_16 AC 44 ms
53,760 KB
testcase_17 AC 44 ms
53,504 KB
testcase_18 AC 46 ms
53,632 KB
testcase_19 AC 48 ms
53,504 KB
testcase_20 AC 47 ms
53,760 KB
testcase_21 AC 46 ms
53,632 KB
testcase_22 AC 55 ms
53,632 KB
testcase_23 AC 46 ms
53,760 KB
testcase_24 AC 324 ms
94,208 KB
testcase_25 AC 314 ms
94,592 KB
testcase_26 AC 312 ms
94,592 KB
testcase_27 AC 315 ms
94,080 KB
testcase_28 AC 318 ms
94,208 KB
testcase_29 AC 3,769 ms
287,360 KB
testcase_30 AC 2,263 ms
239,104 KB
testcase_31 AC 3,760 ms
286,976 KB
testcase_32 AC 2,157 ms
239,616 KB
testcase_33 AC 2,151 ms
239,360 KB
testcase_34 AC 2,147 ms
239,232 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