結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2022-10-05 13:16:23
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 795 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 87,304 KB
実行使用メモリ 317,128 KB
最終ジャッジ日時 2023-08-30 04:51:22
合計ジャッジ時間 18,226 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,856 KB
testcase_01 AC 92 ms
71,736 KB
testcase_02 AC 94 ms
71,356 KB
testcase_03 AC 99 ms
71,564 KB
testcase_04 AC 95 ms
71,560 KB
testcase_05 AC 94 ms
71,624 KB
testcase_06 AC 95 ms
71,796 KB
testcase_07 AC 93 ms
71,476 KB
testcase_08 AC 95 ms
71,728 KB
testcase_09 AC 95 ms
71,564 KB
testcase_10 AC 94 ms
71,800 KB
testcase_11 AC 95 ms
71,672 KB
testcase_12 AC 96 ms
71,588 KB
testcase_13 AC 97 ms
71,692 KB
testcase_14 AC 94 ms
71,676 KB
testcase_15 AC 92 ms
71,668 KB
testcase_16 AC 94 ms
71,576 KB
testcase_17 AC 94 ms
71,648 KB
testcase_18 AC 92 ms
71,472 KB
testcase_19 AC 92 ms
71,776 KB
testcase_20 AC 92 ms
71,684 KB
testcase_21 AC 91 ms
71,736 KB
testcase_22 AC 93 ms
71,736 KB
testcase_23 AC 94 ms
71,744 KB
testcase_24 AC 296 ms
88,360 KB
testcase_25 AC 297 ms
88,196 KB
testcase_26 AC 299 ms
88,388 KB
testcase_27 AC 302 ms
88,344 KB
testcase_28 AC 290 ms
88,260 KB
testcase_29 MLE -
testcase_30 AC 1,436 ms
174,256 KB
testcase_31 MLE -
testcase_32 AC 1,512 ms
174,048 KB
testcase_33 AC 1,526 ms
174,008 KB
testcase_34 AC 1,534 ms
173,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from array import array
from collections import deque

H, W = map(int, input().split())
A = tuple(array('b', map(int, input().split())) for _ in range(H))
pair2int = lambda h, w: h * W + w
int2pair = lambda i: divmod(i, W)
nonvisited = array('b', [1] * (H * W))
directions = ((0, 1), (1, 0), (0, -1), (-1, 0))
ans = 0
for i in range(H * W):
    h, w = int2pair(i)
    if A[h][w] and nonvisited[i]:
        ans += 1
        # dfs
        d = deque([i])
        while d:
            x = d.pop()
            h, w = int2pair(x)
            nonvisited[x] = 0
            for dh, dw in directions:
                hdh, wdw = h + dh, w + dw
                if 0 <= hdh < H and 0 <= wdw < W and A[hdh][wdw] and nonvisited[pair2int(hdh, wdw)]:
                    d.append(pair2int(hdh, wdw))
print(ans)
0