結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,856 KB
testcase_01 AC 37 ms
53,536 KB
testcase_02 AC 37 ms
53,696 KB
testcase_03 AC 37 ms
52,620 KB
testcase_04 AC 38 ms
53,472 KB
testcase_05 AC 38 ms
53,004 KB
testcase_06 AC 38 ms
52,932 KB
testcase_07 AC 37 ms
53,704 KB
testcase_08 AC 37 ms
53,572 KB
testcase_09 AC 36 ms
53,044 KB
testcase_10 AC 37 ms
53,944 KB
testcase_11 AC 36 ms
52,448 KB
testcase_12 AC 37 ms
52,468 KB
testcase_13 AC 38 ms
52,884 KB
testcase_14 AC 38 ms
52,876 KB
testcase_15 AC 38 ms
53,036 KB
testcase_16 AC 38 ms
52,672 KB
testcase_17 AC 37 ms
53,796 KB
testcase_18 AC 37 ms
53,884 KB
testcase_19 AC 39 ms
52,652 KB
testcase_20 AC 37 ms
54,124 KB
testcase_21 AC 37 ms
53,360 KB
testcase_22 AC 37 ms
53,292 KB
testcase_23 AC 36 ms
53,300 KB
testcase_24 AC 299 ms
111,708 KB
testcase_25 AC 300 ms
111,652 KB
testcase_26 AC 305 ms
111,704 KB
testcase_27 AC 313 ms
111,804 KB
testcase_28 AC 301 ms
111,660 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