結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2020-12-04 09:16:50
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 643 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 849,288 KB
最終ジャッジ日時 2024-11-25 16:38:02
合計ジャッジ時間 43,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,260 KB
testcase_01 AC 41 ms
55,524 KB
testcase_02 AC 42 ms
56,320 KB
testcase_03 AC 39 ms
54,940 KB
testcase_04 AC 40 ms
54,232 KB
testcase_05 AC 39 ms
55,132 KB
testcase_06 AC 39 ms
54,812 KB
testcase_07 AC 39 ms
54,932 KB
testcase_08 AC 40 ms
54,180 KB
testcase_09 AC 39 ms
55,328 KB
testcase_10 AC 40 ms
53,492 KB
testcase_11 AC 40 ms
54,312 KB
testcase_12 AC 39 ms
54,512 KB
testcase_13 AC 40 ms
53,828 KB
testcase_14 AC 39 ms
55,444 KB
testcase_15 AC 40 ms
54,628 KB
testcase_16 AC 38 ms
55,456 KB
testcase_17 AC 40 ms
54,320 KB
testcase_18 AC 39 ms
53,920 KB
testcase_19 AC 42 ms
54,400 KB
testcase_20 AC 41 ms
55,200 KB
testcase_21 AC 43 ms
55,648 KB
testcase_22 AC 43 ms
54,864 KB
testcase_23 AC 44 ms
54,468 KB
testcase_24 AC 643 ms
158,520 KB
testcase_25 AC 618 ms
158,324 KB
testcase_26 AC 622 ms
158,404 KB
testcase_27 AC 628 ms
158,352 KB
testcase_28 AC 614 ms
157,688 KB
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from collections import deque

H, W = map(int, input().split())
A = [tuple(map(int, input().split())) for _ in range(H)]

visited = set()
ans = 0
for h, w in itertools.product(range(H), range(W)):
    if A[h][w] and (h, w) not in visited:
        ans += 1
        # dfs
        d = deque([(h, w)])
        while d:
            h, w = d.pop()
            visited.add((h, w))
            for dh, dw in ((0, 1), (1, 0), (0, -1), (-1, 0)):
                hdh, wdw = h + dh, w + dw
                if 0 <= hdh < H and 0 <= wdw < W and A[hdh][wdw] and (hdh, wdw) not in visited:
                    d.append((hdh, wdw))
print(ans)
0