結果

問題 No.317 辺の追加
ユーザー titiatitia
提出日時 2023-09-20 00:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-07-05 21:51:02
合計ジャッジ時間 11,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 242 ms
80,256 KB
testcase_03 AC 275 ms
80,384 KB
testcase_04 AC 264 ms
81,280 KB
testcase_05 AC 239 ms
79,544 KB
testcase_06 AC 273 ms
79,616 KB
testcase_07 AC 171 ms
78,848 KB
testcase_08 AC 372 ms
82,816 KB
testcase_09 AC 264 ms
81,152 KB
testcase_10 AC 282 ms
80,768 KB
testcase_11 AC 174 ms
84,224 KB
testcase_12 AC 289 ms
80,640 KB
testcase_13 AC 225 ms
82,188 KB
testcase_14 AC 267 ms
81,280 KB
testcase_15 AC 284 ms
80,896 KB
testcase_16 AC 273 ms
82,048 KB
testcase_17 AC 277 ms
81,152 KB
testcase_18 AC 287 ms
81,152 KB
testcase_19 AC 305 ms
81,152 KB
testcase_20 AC 307 ms
82,176 KB
testcase_21 AC 136 ms
78,976 KB
testcase_22 AC 124 ms
78,592 KB
testcase_23 AC 129 ms
78,464 KB
testcase_24 AC 158 ms
79,360 KB
testcase_25 AC 147 ms
78,976 KB
testcase_26 AC 152 ms
79,104 KB
testcase_27 AC 141 ms
78,720 KB
testcase_28 AC 130 ms
78,464 KB
testcase_29 AC 103 ms
77,696 KB
testcase_30 AC 386 ms
80,128 KB
testcase_31 AC 327 ms
80,256 KB
testcase_32 AC 314 ms
80,000 KB
testcase_33 AC 307 ms
80,384 KB
testcase_34 AC 316 ms
80,256 KB
testcase_35 AC 309 ms
80,256 KB
testcase_36 AC 310 ms
80,000 KB
testcase_37 AC 346 ms
80,128 KB
testcase_38 AC 384 ms
80,000 KB
testcase_39 AC 316 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

from collections import Counter

# UnionFind

Group = [i for i in range(N)] # グループ分け
Nodes = [1]*(N) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(M):
    x,y=map(int,input().split())
    x-=1
    y-=1
    Union(x,y)

LIST=[]

for i in range(N):
    if find(i)==i:
        LIST.append(Nodes[i])

C=Counter(LIST)

DP=[1<<30]*(N+1)
DP[0]=0

for l in C:
    c=C[l]

    LL=[]

    for j in range(30):
        if c>2**j:
            LL.append(2**j)
            c-=2**j
        else:
            LL.append(c)
            break

    #print(c,LL)

    for x in LL:
        for j in range(N-x*l,-1,-1):
            if DP[j]!=1<<30:
                DP[j+x*l]=min(DP[j+x*l],DP[j]+x)

    #print(DP)

for i in range(1,N+1):
    if DP[i]==1<<30:
        print(-1)
    else:
        print(DP[i]-1)
0