結果

問題 No.416 旅行会社
ユーザー cielciel
提出日時 2016-08-27 03:26:27
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,697 ms / 4,000 ms
コード長 633 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 130,852 KB
最終ジャッジ日時 2024-12-14 20:01:52
合計ジャッジ時間 16,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
116,788 KB
testcase_01 AC 83 ms
77,596 KB
testcase_02 AC 84 ms
77,576 KB
testcase_03 AC 84 ms
77,360 KB
testcase_04 AC 84 ms
77,844 KB
testcase_05 AC 86 ms
77,972 KB
testcase_06 AC 84 ms
77,984 KB
testcase_07 AC 135 ms
79,992 KB
testcase_08 AC 189 ms
82,056 KB
testcase_09 AC 245 ms
84,568 KB
testcase_10 AC 480 ms
116,596 KB
testcase_11 AC 487 ms
116,976 KB
testcase_12 AC 473 ms
116,724 KB
testcase_13 AC 300 ms
116,788 KB
testcase_14 AC 1,650 ms
129,972 KB
testcase_15 AC 1,651 ms
130,700 KB
testcase_16 AC 1,604 ms
129,708 KB
testcase_17 AC 1,684 ms
130,840 KB
testcase_18 AC 1,697 ms
130,852 KB
testcase_19 AC 1,266 ms
124,552 KB
testcase_20 AC 1,344 ms
125,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import defaultdict
import sys,heapq

H=defaultdict(dict)
N,M,Q=map(int,sys.stdin.readline().split())
for i in range(M):
	x,y=map(int,sys.stdin.readline().split())
	x-=1;y-=1
	H[x][y]=H[y][x]=0
for i in range(Q):
	x,y=map(int,sys.stdin.readline().split())
	x-=1;y-=1
	H[x][y]=H[y][x]=Q-i

#dijkstra-like
A=[0]+[-1]*(N-1)
q=[[0,0]]
while q:
	cost1,src=heapq.heappop(q)
	for dst,cost2 in H[src].items():
		cost=max(cost1,cost2)
		if A[dst]<0 or cost<A[dst]:
			A[dst]=cost
			heapq.heappush(q,[cost,dst])

for i in range(1,N):
	if A[i]<0:
		print(0)
	elif A[i]==0:
		print(-1)
	else:
		print(Q-A[i]+1)
0