結果

問題 No.697 池の数はいくつか
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-01 18:01:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,173 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 234,984 KB
最終ジャッジ日時 2024-05-04 07:09:55
合計ジャッジ時間 21,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
11,008 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 25 ms
11,008 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 25 ms
11,008 KB
testcase_20 AC 26 ms
10,880 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 2,411 ms
40,616 KB
testcase_25 AC 2,520 ms
40,616 KB
testcase_26 AC 2,473 ms
40,604 KB
testcase_27 AC 2,498 ms
40,620 KB
testcase_28 AC 2,471 ms
40,616 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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