結果

問題 No.416 旅行会社
ユーザー TawaraTawara
提出日時 2016-08-27 00:48:47
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,009 ms / 4,000 ms
コード長 948 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 257,024 KB
最終ジャッジ日時 2024-11-08 18:08:22
合計ジャッジ時間 12,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
136,448 KB
testcase_01 AC 88 ms
75,520 KB
testcase_02 AC 88 ms
75,648 KB
testcase_03 AC 90 ms
75,776 KB
testcase_04 AC 89 ms
75,520 KB
testcase_05 AC 89 ms
75,648 KB
testcase_06 AC 92 ms
75,648 KB
testcase_07 AC 109 ms
77,824 KB
testcase_08 AC 172 ms
81,152 KB
testcase_09 AC 239 ms
86,016 KB
testcase_10 AC 429 ms
136,320 KB
testcase_11 AC 617 ms
257,024 KB
testcase_12 AC 592 ms
225,024 KB
testcase_13 AC 572 ms
225,024 KB
testcase_14 AC 853 ms
155,520 KB
testcase_15 AC 906 ms
170,240 KB
testcase_16 AC 957 ms
182,528 KB
testcase_17 AC 1,009 ms
192,640 KB
testcase_18 AC 912 ms
162,432 KB
testcase_19 AC 867 ms
174,976 KB
testcase_20 AC 719 ms
136,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def dfs(b,h,E,ans,reachable,turn):
	if reachable[h]:
		return
	reachable[h] = 1
	ans[h] = turn
	for nxt in E[h]:
		if b == nxt:
			continue
		dfs(h,nxt,E,ans,reachable,turn)
def solve():
	sys.setrecursionlimit(200000)
	N,M,Q = map(int,raw_input().split())
	reachable = [0]*N
	EL = [[] for i in xrange(N)]
	ans = [0]*N
	BEset = [set() for i in xrange(N)]
	BE = []
	Edge = [map(lambda x: int(x)-1,raw_input().split()) for i in xrange(M)]
	BE = [map(lambda x: int(x)-1,raw_input().split()) for i in xrange(Q)]
	for i in xrange(Q):
		BEset[BE[i][0]].add(BE[i][1])
	for f,t in Edge:
		if t in BEset[f] or f in BEset[t]:
			continue
		EL[f].append(t)
		EL[t].append(f)
	dfs(-1,0,EL,ans,reachable,-1)
	for i in xrange(Q-1,-1,-1):
		f,t = BE[i]
		EL[f].append(t)
		EL[t].append(f)
		if reachable[f]:
			dfs(f,t,EL,ans,reachable,i+1)
		elif reachable[t]:
			dfs(t,f,EL,ans,reachable,i+1)
	for i in xrange(1,N):
		print ans[i]*reachable[i]
solve()
0