結果

問題 No.697 池の数はいくつか
ユーザー AEnAEn
提出日時 2022-05-26 18:06:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,133 ms / 6,000 ms
コード長 796 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 287,552 KB
最終ジャッジ日時 2024-11-08 09:03:03
合計ジャッジ時間 22,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 AC 47 ms
53,888 KB
testcase_11 AC 46 ms
53,632 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 47 ms
53,632 KB
testcase_14 AC 46 ms
53,376 KB
testcase_15 AC 47 ms
53,632 KB
testcase_16 AC 47 ms
53,632 KB
testcase_17 AC 46 ms
53,760 KB
testcase_18 AC 47 ms
53,248 KB
testcase_19 AC 47 ms
53,504 KB
testcase_20 AC 47 ms
53,632 KB
testcase_21 AC 47 ms
53,504 KB
testcase_22 AC 47 ms
53,632 KB
testcase_23 AC 48 ms
54,144 KB
testcase_24 AC 340 ms
96,896 KB
testcase_25 AC 328 ms
96,896 KB
testcase_26 AC 332 ms
97,024 KB
testcase_27 AC 330 ms
96,896 KB
testcase_28 AC 335 ms
97,024 KB
testcase_29 AC 4,064 ms
287,304 KB
testcase_30 AC 2,093 ms
265,600 KB
testcase_31 AC 4,133 ms
287,552 KB
testcase_32 AC 2,105 ms
265,728 KB
testcase_33 AC 2,122 ms
265,856 KB
testcase_34 AC 2,098 ms
265,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
m = []
for i in range(H):
    m.append(list(map(int, input().split())))

xx = [1, 0, -1, 0]
yy = [0, 1, 0, -1]

q = deque()
cnt = 0
seen = [[False]*W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if seen[i][j] == False and m[i][j] == 1:
            seen[i][j] = True
            q.append((i, j))
            cnt += 1
            while q:
                x, y = q.popleft()
                for px, py in zip(xx, yy):
                    cx = x+px
                    cy = y+py
                    if 0<=cx<H and 0<=cy<W and m[cx][cy] == 1 and seen[cx][cy] == False:
                        q.append((cx, cy))
                        seen[cx][cy] = True
        else:
            seen[i][j] = True
print(cnt)


0