結果

問題 No.317 辺の追加
ユーザー TawaraTawara
提出日時 2015-12-13 14:48:55
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-09-15 11:41:02
合計ジャッジ時間 18,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
78,848 KB
testcase_01 AC 97 ms
78,336 KB
testcase_02 AC 284 ms
82,816 KB
testcase_03 AC 293 ms
82,432 KB
testcase_04 AC 338 ms
85,248 KB
testcase_05 AC 278 ms
82,048 KB
testcase_06 AC 319 ms
82,176 KB
testcase_07 AC 192 ms
81,536 KB
testcase_08 AC 458 ms
88,064 KB
testcase_09 AC 320 ms
83,712 KB
testcase_10 AC 358 ms
83,072 KB
testcase_11 AC 248 ms
96,256 KB
testcase_12 AC 364 ms
83,200 KB
testcase_13 AC 290 ms
94,336 KB
testcase_14 AC 336 ms
83,072 KB
testcase_15 AC 354 ms
83,200 KB
testcase_16 AC 341 ms
85,376 KB
testcase_17 AC 341 ms
83,328 KB
testcase_18 AC 364 ms
82,688 KB
testcase_19 AC 374 ms
82,944 KB
testcase_20 AC 372 ms
85,760 KB
testcase_21 AC 186 ms
82,176 KB
testcase_22 AC 166 ms
81,536 KB
testcase_23 AC 173 ms
82,048 KB
testcase_24 AC 206 ms
82,048 KB
testcase_25 AC 193 ms
81,920 KB
testcase_26 AC 196 ms
82,048 KB
testcase_27 AC 184 ms
82,176 KB
testcase_28 AC 172 ms
82,048 KB
testcase_29 AC 144 ms
81,280 KB
testcase_30 AC 377 ms
82,688 KB
testcase_31 AC 352 ms
82,688 KB
testcase_32 AC 383 ms
82,432 KB
testcase_33 AC 391 ms
82,560 KB
testcase_34 AC 384 ms
82,688 KB
testcase_35 AC 388 ms
82,560 KB
testcase_36 AC 344 ms
82,560 KB
testcase_37 AC 344 ms
82,560 KB
testcase_38 AC 384 ms
82,560 KB
testcase_39 AC 385 ms
82,432 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))
	tmp = mul = 1
	for i in xrange(log_num):
		w = v_num*mul
		for j in xrange(N,w-1,-1):
			tmp = ans[j-w]+mul
			if ans[j] > tmp: ans[j] = tmp
		num -= mul; mul *= 2
	if num > 0:
		w = v_num*num
		for j in xrange(N,w-1,-1):
			tmp = ans[j-w]+num
			if ans[j] > tmp: ans[j] = tmp
			
for i in xrange(1,N+1):
	print ans[i]*(ans[i]<N)-1
0