結果

問題 No.697 池の数はいくつか
ユーザー ryusukeryusuke
提出日時 2023-04-21 14:27:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,083 ms / 6,000 ms
コード長 1,224 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 281,584 KB
最終ジャッジ日時 2024-11-06 09:43:35
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 43 ms
53,688 KB
testcase_09 AC 44 ms
53,504 KB
testcase_10 AC 45 ms
54,016 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 45 ms
54,144 KB
testcase_13 AC 45 ms
54,016 KB
testcase_14 AC 44 ms
54,272 KB
testcase_15 AC 43 ms
53,888 KB
testcase_16 AC 43 ms
53,760 KB
testcase_17 AC 44 ms
54,144 KB
testcase_18 AC 45 ms
54,272 KB
testcase_19 AC 44 ms
53,760 KB
testcase_20 AC 45 ms
54,144 KB
testcase_21 AC 45 ms
54,272 KB
testcase_22 AC 44 ms
54,016 KB
testcase_23 AC 44 ms
54,272 KB
testcase_24 AC 271 ms
95,920 KB
testcase_25 AC 262 ms
95,636 KB
testcase_26 AC 270 ms
96,000 KB
testcase_27 AC 268 ms
96,044 KB
testcase_28 AC 267 ms
96,000 KB
testcase_29 AC 2,083 ms
281,584 KB
testcase_30 AC 1,725 ms
269,400 KB
testcase_31 AC 2,019 ms
281,552 KB
testcase_32 AC 1,587 ms
269,432 KB
testcase_33 AC 1,578 ms
269,352 KB
testcase_34 AC 1,637 ms
269,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.path.append("../../")

from collections import deque

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

# dist[i][j] := INF -> 池でまだ見てない, -1 -> 地面で通れない
dist = [[-1] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        if a[i][j]:
            dist[i][j] = 0

cnt = 1 # 今見ている池の番号
q = deque()
for i in range(h):
    for j in range(w):
        if a[i][j]:
            q.append((i, j))
            dist[i][j] = cnt
            break
    break

d = ((1, 0), (-1, 0), (0, 1), (0, -1))
for i in range(h):
    for j in range(w):
        if not (dist[i][j] == 0 or dist[i][j] == cnt): continue
        if dist[i][j] == 0:
            q.append((i, j))
        while q:
            vy, vx = q.popleft()
            dist[vy][vx] = cnt
            for dy, dx in d:
                y = vy + dy
                x = vx + dx
                if not (0 <= x < w and 0 <= y < h): continue
                if dist[y][x] != 0: continue
                dist[y][x] = dist[vy][vx]
                q.append((y, x))
        cnt += 1

ans = 0
for i in range(h):
    for j in range(w):
        ans = max(ans, dist[i][j])

print(ans)
0