結果

問題 No.416 旅行会社
ユーザー TawaraTawara
提出日時 2016-08-27 11:00:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,548 ms / 4,000 ms
コード長 875 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 118,704 KB
最終ジャッジ日時 2024-05-08 15:08:01
合計ジャッジ時間 15,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 692 ms
70,500 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 10 ms
6,144 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 10 ms
6,272 KB
testcase_05 AC 10 ms
6,528 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 12 ms
6,784 KB
testcase_08 AC 23 ms
7,680 KB
testcase_09 AC 75 ms
12,720 KB
testcase_10 AC 706 ms
70,496 KB
testcase_11 AC 674 ms
67,812 KB
testcase_12 AC 685 ms
67,812 KB
testcase_13 AC 660 ms
68,036 KB
testcase_14 AC 1,548 ms
116,872 KB
testcase_15 AC 1,507 ms
116,608 KB
testcase_16 AC 1,521 ms
118,704 KB
testcase_17 AC 1,494 ms
116,740 KB
testcase_18 AC 1,490 ms
116,868 KB
testcase_19 AC 930 ms
75,236 KB
testcase_20 AC 914 ms
75,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def dfs(h,E,ans,reach,turn):
	q = [[-1,h]]
	while q:
		b,h = q.pop()
		if reach[h]:continue
		reach[h] = True
		ans[h] = turn
		for nxt in E[h]:
			if b == nxt:continue
			q.append([h,nxt])
def solve():
	ofs = 10**6
	N,M,Q = map(int,raw_input().split())
	reach = [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(0,EL,ans,reach,-1)
	for i in xrange(Q,0,-1):
		f,t = Edges[M+i-1]
		EL[f].append(t); EL[t].append(f)
		if reach[f]:
			dfs(t,EL,ans,reach,i)
		elif reach[t]:
			dfs(f,EL,ans,reach,i)
	for i in xrange(1,N):
		print ans[i]
solve()
0