結果

問題 No.697 池の数はいくつか
ユーザー qibqib
提出日時 2022-11-04 00:31:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,522 ms / 6,000 ms
コード長 766 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 284,828 KB
最終ジャッジ日時 2024-07-18 06:04:52
合計ジャッジ時間 17,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 41 ms
53,888 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 43 ms
54,016 KB
testcase_15 AC 42 ms
53,888 KB
testcase_16 AC 43 ms
53,504 KB
testcase_17 AC 44 ms
54,272 KB
testcase_18 AC 43 ms
54,144 KB
testcase_19 AC 43 ms
54,016 KB
testcase_20 AC 42 ms
54,016 KB
testcase_21 AC 43 ms
54,016 KB
testcase_22 AC 44 ms
53,504 KB
testcase_23 AC 43 ms
54,144 KB
testcase_24 AC 281 ms
94,080 KB
testcase_25 AC 280 ms
94,208 KB
testcase_26 AC 288 ms
94,208 KB
testcase_27 AC 293 ms
94,292 KB
testcase_28 AC 302 ms
94,976 KB
testcase_29 AC 2,522 ms
284,828 KB
testcase_30 AC 1,571 ms
237,696 KB
testcase_31 AC 2,406 ms
284,720 KB
testcase_32 AC 1,554 ms
237,696 KB
testcase_33 AC 1,548 ms
237,568 KB
testcase_34 AC 1,579 ms
237,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]

par = [[-1 for _ in range(w)] for _ in range(h)]
ans = 0
for x in range(h):
  for y in range(w):
    if a[x][y] == 0 or par[x][y] != -1:
      continue

    dq = deque()
    sx, sy = x, y
    dq.appendleft((sx, sy))
    par[sx][sy] = ans
    while len(dq) > 0:
      cx, cy = dq.pop()
      for i in range(4):
        nx = cx + dx[i]
        if nx < 0 or nx >= h:
          continue
        ny = cy + dy[i]
        if ny < 0 or ny >= w:
          continue
        if a[nx][ny] == 0 or par[nx][ny] != -1:
          continue

        par[nx][ny] = ans
        dq.appendleft((nx, ny))
    ans += 1

print(ans)
0