結果

問題 No.697 池の数はいくつか
ユーザー ryusukeryusuke
提出日時 2022-02-04 21:04:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,103 ms / 6,000 ms
コード長 1,278 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 281,544 KB
最終ジャッジ日時 2024-11-08 09:02:03
合計ジャッジ時間 15,651 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 48 ms
53,888 KB
testcase_03 AC 47 ms
53,504 KB
testcase_04 AC 47 ms
53,632 KB
testcase_05 AC 47 ms
53,760 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 47 ms
53,888 KB
testcase_08 AC 48 ms
53,760 KB
testcase_09 AC 48 ms
53,888 KB
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 48 ms
53,760 KB
testcase_12 AC 48 ms
54,272 KB
testcase_13 AC 48 ms
53,504 KB
testcase_14 AC 48 ms
54,016 KB
testcase_15 AC 47 ms
53,376 KB
testcase_16 AC 47 ms
53,760 KB
testcase_17 AC 47 ms
53,760 KB
testcase_18 AC 48 ms
53,504 KB
testcase_19 AC 48 ms
53,632 KB
testcase_20 AC 48 ms
53,888 KB
testcase_21 AC 47 ms
53,376 KB
testcase_22 AC 47 ms
53,632 KB
testcase_23 AC 48 ms
53,760 KB
testcase_24 AC 281 ms
96,000 KB
testcase_25 AC 271 ms
96,000 KB
testcase_26 AC 276 ms
96,128 KB
testcase_27 AC 277 ms
95,872 KB
testcase_28 AC 277 ms
96,000 KB
testcase_29 AC 2,103 ms
281,292 KB
testcase_30 AC 1,634 ms
269,184 KB
testcase_31 AC 2,095 ms
281,544 KB
testcase_32 AC 1,626 ms
269,312 KB
testcase_33 AC 1,630 ms
268,928 KB
testcase_34 AC 1,683 ms
269,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
#print(*dist, sep='\n')
#print(q)
#print()
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))
                #print(q)
        cnt += 1

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

#print(*dist, sep='\n')
print(ans)
0