結果

問題 No.697 池の数はいくつか
ユーザー KazunKazun
提出日時 2020-06-02 16:03:42
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,138 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 1,162,920 KB
最終ジャッジ日時 2024-11-25 16:10:38
合計ジャッジ時間 56,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 42 ms
53,796 KB
testcase_05 AC 38 ms
54,988 KB
testcase_06 AC 38 ms
56,124 KB
testcase_07 AC 40 ms
54,848 KB
testcase_08 AC 38 ms
54,464 KB
testcase_09 AC 39 ms
55,000 KB
testcase_10 AC 41 ms
54,864 KB
testcase_11 AC 41 ms
54,552 KB
testcase_12 AC 41 ms
54,080 KB
testcase_13 AC 41 ms
54,800 KB
testcase_14 AC 40 ms
54,476 KB
testcase_15 AC 39 ms
55,012 KB
testcase_16 AC 39 ms
55,572 KB
testcase_17 AC 40 ms
54,968 KB
testcase_18 AC 40 ms
54,364 KB
testcase_19 AC 40 ms
54,124 KB
testcase_20 AC 41 ms
55,888 KB
testcase_21 AC 42 ms
54,456 KB
testcase_22 AC 41 ms
54,120 KB
testcase_23 AC 42 ms
54,652 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H,W=map(int,input().split())

def f(x,y):
    return y*(W+2)+x

def g(n):
    return (n%(W+2),n//(W+2))

def BFS(V,A):
    Q=deque([V[0]])
    S={v:False for v in V}
    S[V[0]]=True
    T=[V[0]]

    while Q:
        v=Q.popleft()

        N=[]
        (x,y)=g(v)
        if A[y][x+1]==1 and not S[v+1]:
            Q.append(v+1)
            T.append(v+1)
            S[v+1]=True
            
        if A[y][x-1]==1 and not S[v-1]:
            Q.append(v-1)
            T.append(v-1)
            S[v-1]=True
            
        if A[y+1][x]==1 and not S[v+(W+2)]:
            Q.append(v+(W+2))
            T.append(v+(W+2))
            S[v+(W+2)]=True
            
        if A[y-1][x]==1 and not S[v-(W+2)]:
            Q.append(v-(W+2))
            T.append(v-(W+2))
            S[v-(W+2)]=True

    return T

A=[[0]*(W+2)]
for i in range(H):
    A.append([0]+list(map(int,input().split()))+[0])
A+=[[0]*(W+2)]

V=[]
for y in range(H+2):
    for x in range(W+2):
        if A[y][x]==1:
            V.append(f(x,y))

U=set()
X=set(V)
k=0
while U!=X:
    k+=1
    U|=set(BFS(list(X-U),A))

print(k)
    
0