結果

問題 No.317 辺の追加
ユーザー TawaraTawara
提出日時 2015-12-12 17:24:39
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 98,220 KB
最終ジャッジ日時 2024-06-06 03:32:52
合計ジャッジ時間 17,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
77,696 KB
testcase_01 AC 85 ms
77,440 KB
testcase_02 AC 303 ms
82,256 KB
testcase_03 AC 291 ms
82,048 KB
testcase_04 AC 335 ms
84,464 KB
testcase_05 AC 283 ms
81,092 KB
testcase_06 AC 321 ms
81,684 KB
testcase_07 AC 202 ms
80,868 KB
testcase_08 AC 513 ms
86,956 KB
testcase_09 AC 332 ms
83,240 KB
testcase_10 AC 360 ms
82,856 KB
testcase_11 AC 263 ms
98,220 KB
testcase_12 AC 362 ms
82,472 KB
testcase_13 AC 290 ms
91,820 KB
testcase_14 AC 329 ms
82,896 KB
testcase_15 AC 348 ms
82,600 KB
testcase_16 AC 342 ms
85,032 KB
testcase_17 AC 336 ms
82,732 KB
testcase_18 AC 354 ms
82,464 KB
testcase_19 AC 371 ms
82,472 KB
testcase_20 AC 386 ms
86,180 KB
testcase_21 AC 189 ms
81,316 KB
testcase_22 AC 168 ms
81,244 KB
testcase_23 AC 172 ms
81,116 KB
testcase_24 AC 220 ms
82,040 KB
testcase_25 AC 203 ms
81,596 KB
testcase_26 AC 204 ms
81,824 KB
testcase_27 AC 190 ms
81,596 KB
testcase_28 AC 168 ms
81,124 KB
testcase_29 AC 145 ms
80,640 KB
testcase_30 AC 426 ms
82,344 KB
testcase_31 AC 360 ms
82,344 KB
testcase_32 AC 419 ms
82,468 KB
testcase_33 AC 368 ms
82,348 KB
testcase_34 AC 361 ms
82,348 KB
testcase_35 AC 363 ms
82,220 KB
testcase_36 AC 358 ms
82,476 KB
testcase_37 AC 366 ms
82,348 KB
testcase_38 AC 357 ms
82,344 KB
testcase_39 AC 362 ms
82,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as D
I=int;f=lambda:map(I,raw_input().split());R=range;N,M=f();P=R(N+1)
def r(x):
	while x^P[x]:P[x]=x=P[P[x]]
	return x
Cc=D(I);Cn=D(I);A=[N]*(N+1);A[0]=0
for i in R(M):u,v=map(r,f());P[u]=v
for i in R(N):Cc[r(i+1)]+=1
for v in Cc.values():Cn[v]+=1
for v,n in Cn.items():
	m=1
	while n>0:
		m=min(m,n);w=v*m
		for j in R(N,w-1,-1):A[j]=min(A[j],A[j-w]+m)
		n-=m;m*=2
for i in R(N):print A[i+1]*(A[i+1]<N)-1
0