結果

問題 No.416 旅行会社
ユーザー TawaraTawara
提出日時 2016-08-27 07:22:02
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 680 ms / 4,000 ms
コード長 996 bytes
コンパイル時間 1,401 ms
コンパイル使用メモリ 76,324 KB
実行使用メモリ 216,892 KB
最終ジャッジ日時 2024-05-08 15:07:02
合計ジャッジ時間 9,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
143,452 KB
testcase_01 AC 82 ms
77,856 KB
testcase_02 AC 79 ms
77,712 KB
testcase_03 AC 80 ms
77,740 KB
testcase_04 AC 82 ms
77,444 KB
testcase_05 AC 85 ms
77,372 KB
testcase_06 AC 86 ms
78,752 KB
testcase_07 AC 92 ms
79,432 KB
testcase_08 AC 126 ms
81,600 KB
testcase_09 AC 166 ms
86,588 KB
testcase_10 AC 315 ms
143,676 KB
testcase_11 AC 290 ms
144,860 KB
testcase_12 AC 291 ms
144,384 KB
testcase_13 AC 296 ms
144,724 KB
testcase_14 AC 680 ms
214,140 KB
testcase_15 AC 664 ms
215,740 KB
testcase_16 AC 614 ms
216,892 KB
testcase_17 AC 611 ms
215,856 KB
testcase_18 AC 649 ms
215,048 KB
testcase_19 AC 482 ms
152,624 KB
testcase_20 AC 467 ms
152,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
def dfs(b,h,E,ans,reachable,turn):
	q = deque()
	q.append([b,h])
	while q:
		b,h = q.pop()
		if reachable[h]:continue
		reachable[h] = True
		ans[h] = turn
		for nxt in E[h]:
			if b == nxt:continue
			q.append([h,nxt])
def solve():
	ofs = 10**6
	sys.setrecursionlimit(ofs)
	N,M,Q = map(int,raw_input().split())
	reachable = [False]*N
	EL = [[] for i in xrange(N)]
	ans = [0]*N
	Break = set()
	Edges = map(lambda x: map(lambda x:int(x)-1,x.split()),sys.stdin.readlines())
	for i in xrange(Q):
		Break.add(Edges[M+i][0]+Edges[M+i][1]*ofs)
		Break.add(Edges[M+i][0]*ofs+Edges[M+i][1])
	for i in xrange(M):
		f,t = Edges[i]
		if (f+t*ofs) in Break:
			continue
		EL[f].append(t); EL[t].append(f)
	dfs(-1,0,EL,ans,reachable,-1)
	for i in xrange(Q,0,-1):
		f,t = Edges[M+i-1]
		EL[f].append(t); EL[t].append(f)
		if reachable[f]:
			dfs(-1,t,EL,ans,reachable,i)
		elif reachable[t]:
			dfs(-1,f,EL,ans,reachable,i)
	for i in xrange(1,N):
		print ans[i]
solve()
0