結果

問題 No.317 辺の追加
ユーザー TawaraTawara
提出日時 2015-12-12 16:57:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 1,250 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-09-15 08:47:06
合計ジャッジ時間 14,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
78,208 KB
testcase_01 AC 85 ms
78,464 KB
testcase_02 AC 284 ms
82,944 KB
testcase_03 AC 279 ms
82,304 KB
testcase_04 AC 316 ms
84,736 KB
testcase_05 AC 255 ms
82,048 KB
testcase_06 AC 300 ms
82,048 KB
testcase_07 AC 179 ms
81,152 KB
testcase_08 AC 429 ms
88,192 KB
testcase_09 AC 307 ms
83,328 KB
testcase_10 AC 340 ms
82,944 KB
testcase_11 AC 255 ms
96,256 KB
testcase_12 AC 349 ms
83,200 KB
testcase_13 AC 279 ms
93,952 KB
testcase_14 AC 320 ms
83,072 KB
testcase_15 AC 332 ms
83,072 KB
testcase_16 AC 343 ms
85,248 KB
testcase_17 AC 327 ms
83,232 KB
testcase_18 AC 346 ms
83,072 KB
testcase_19 AC 349 ms
82,688 KB
testcase_20 AC 353 ms
84,992 KB
testcase_21 AC 178 ms
82,048 KB
testcase_22 AC 157 ms
81,152 KB
testcase_23 AC 167 ms
82,048 KB
testcase_24 AC 202 ms
82,176 KB
testcase_25 AC 183 ms
81,536 KB
testcase_26 AC 191 ms
82,048 KB
testcase_27 AC 182 ms
81,536 KB
testcase_28 AC 167 ms
82,176 KB
testcase_29 AC 131 ms
81,024 KB
testcase_30 AC 419 ms
82,432 KB
testcase_31 AC 390 ms
82,448 KB
testcase_32 AC 329 ms
82,304 KB
testcase_33 AC 332 ms
82,560 KB
testcase_34 AC 339 ms
82,176 KB
testcase_35 AC 331 ms
82,688 KB
testcase_36 AC 384 ms
82,432 KB
testcase_37 AC 390 ms
82,432 KB
testcase_38 AC 416 ms
82,432 KB
testcase_39 AC 331 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import log
parent = range(100000)
def root(x):
	while x != parent[x]: parent[x] = x = parent[parent[x]]
	return x
N,M = map(int,raw_input().split())
conn_comp = defaultdict(int)
comp_num = defaultdict(int)
ans = [N]*(N+1)
ans[0] = 0
for i in xrange(M):
	u,v = map(lambda x:root(int(x)-1),raw_input().split())
	parent[u] = v
for i in xrange(N): conn_comp[root(i)] += 1
for v in conn_comp.itervalues(): comp_num[v] += 1
for v_num,num in comp_num.iteritems():
	log_num = int(log(num,2))
	mul = 1
	for i in xrange(log_num):
		w = v_num*mul
		for j in xrange(N,w-1,-1): ans[j] = min(ans[j],ans[j-w]+mul)
		num -= mul
		mul *= 2
	if num > 0:
		w = v_num*num
		for j in xrange(N,w-1,-1): ans[j] = min(ans[j],ans[j-w]+num)
for i in xrange(1,N+1):
	print ans[i]*(ans[i]<N)-1
0