結果

問題 No.697 池の数はいくつか
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-01 18:01:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,173 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 397,468 KB
最終ジャッジ日時 2024-11-25 16:36:20
合計ジャッジ時間 14,344 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,996 KB
testcase_01 AC 37 ms
54,112 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 36 ms
53,072 KB
testcase_04 AC 37 ms
53,052 KB
testcase_05 AC 35 ms
52,596 KB
testcase_06 AC 36 ms
53,484 KB
testcase_07 AC 35 ms
53,412 KB
testcase_08 AC 38 ms
53,196 KB
testcase_09 AC 37 ms
53,728 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 36 ms
52,704 KB
testcase_12 AC 36 ms
53,004 KB
testcase_13 AC 37 ms
53,876 KB
testcase_14 AC 37 ms
52,756 KB
testcase_15 AC 36 ms
52,336 KB
testcase_16 AC 36 ms
53,224 KB
testcase_17 AC 36 ms
53,212 KB
testcase_18 AC 35 ms
52,816 KB
testcase_19 AC 36 ms
52,948 KB
testcase_20 AC 37 ms
52,396 KB
testcase_21 AC 36 ms
52,476 KB
testcase_22 AC 39 ms
52,616 KB
testcase_23 AC 40 ms
52,768 KB
testcase_24 AC 286 ms
111,364 KB
testcase_25 AC 288 ms
111,744 KB
testcase_26 AC 296 ms
111,632 KB
testcase_27 AC 313 ms
111,856 KB
testcase_28 AC 295 ms
111,528 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def Find(x, par):
    if par[x] < 0:
        return x
    else:
        par[x] = Find(par[x], par)
        return par[x]

def Unite(x, y, par, rank):
    x = Find(x, par)
    y = Find(y, par)

    if x != y:
        if rank[x] < rank[y]:
            par[y] += par[x]
            par[x] = y
        else:
            par[x] += par[y]
            par[y] = x
            if rank[x] == rank[y]:
                rank[x] += 1

def Same(x, y, par):
    return Find(x, par) == Find(y, par)

def Size(x, par):
    return -par[Find(x, par)]

par = [-1]*(h*w)
rank = [0]*(h*w)

for i, row in enumerate(A):
    for j, a in enumerate(row):
        v = i*w+j
        if a == 1:
            for di, dj in (-1, 0), (1, 0), (0, -1), (0, 1):
                ni, nj = i+di, j+dj
                if 0 <= ni < h and 0 <= nj < w:
                    if A[ni][nj] == 1:
                        u = ni*w+nj
                        Unite(v, u, par, rank)
S = set()
for i, row in enumerate(A):
    for j, a in enumerate(row):
        v = i*w+j
        if a == 1:
            S.add(Find(v, par))
print(len(S))
0