結果

問題 No.697 池の数はいくつか
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2021-06-12 16:52:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 828 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 165,408 KB
最終ジャッジ日時 2024-05-04 07:25:11
合計ジャッジ時間 14,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 25 ms
10,880 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 24 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 25 ms
10,880 KB
testcase_23 AC 25 ms
10,880 KB
testcase_24 AC 1,090 ms
27,520 KB
testcase_25 AC 1,083 ms
27,648 KB
testcase_26 AC 1,089 ms
27,648 KB
testcase_27 AC 1,124 ms
27,648 KB
testcase_28 AC 1,129 ms
27,648 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
pond = []

for i in range(H):
    a = [int(i) for i in input().split()]
    pond.append(a)

ans = 0
q = deque()
toward = [[0, 1], [0, -1], [1, 0], [-1, 0]]
visited = [([False] * W) for i in range(H)]


def search():
    while len(q) > 0:
        x, y = q.popleft()
        visited[x][y] = True
        for k in range(4):
            dx, dy = x + toward[k][0], y + toward[k][1]
            if (0 <= dx < H) and (0 <= dy < W):
                if (pond[dx][dy] == 1) and (visited[dx][dy] == False):
                    visited[dx][dy] = True
                    q.append([dx, dy])


for i in range(H):
    for j in range(W):
        if (pond[i][j] == 1) and (visited[i][j] == False):
            q.append([i, j])
            search()
            ans += 1

print(ans)
0