結果

問題 No.697 池の数はいくつか
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-22 15:59:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 646 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 852,968 KB
最終ジャッジ日時 2024-12-22 04:55:59
合計ジャッジ時間 76,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 AC 47 ms
53,632 KB
testcase_11 AC 47 ms
53,632 KB
testcase_12 AC 47 ms
53,632 KB
testcase_13 AC 46 ms
53,760 KB
testcase_14 AC 46 ms
53,760 KB
testcase_15 AC 48 ms
53,760 KB
testcase_16 AC 46 ms
53,504 KB
testcase_17 AC 47 ms
53,632 KB
testcase_18 AC 45 ms
53,376 KB
testcase_19 AC 46 ms
53,504 KB
testcase_20 AC 48 ms
53,632 KB
testcase_21 AC 48 ms
53,760 KB
testcase_22 AC 46 ms
53,504 KB
testcase_23 AC 47 ms
53,760 KB
testcase_24 AC 5,473 ms
285,824 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h,w=map(int,input().split())
grid=[list(map(int,input().split())) for i in range(h)]
f=[[0]*w for i in range(h)]
cnt = 1
l=[1,0,-1,0]
r=[0,1,0,-1]

def bfs(x,y):
    d=deque()
    d.append((x,y))

    while d:
        x,y=d.popleft()
        f[x][y] = cnt
        for i in range(4):
            if 0 <= x + l[i] < h and 0 <= y + r[i] < w:
                if grid[x+l[i]][y+r[i]] == 1 and f[x+l[i]][y+r[i]] == 0:
                    d.append((x+l[i],y+r[i]))


for i in range(h):
    for j in range(w):
        if grid[i][j] == 1 and f[i][j] ==0:
            bfs(i,j)
            cnt += 1
            
print(cnt-1) 
0