結果

問題 No.416 旅行会社
ユーザー cielciel
提出日時 2016-08-27 03:26:27
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,016 ms / 4,000 ms
コード長 633 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 130,864 KB
最終ジャッジ日時 2024-05-08 15:07:44
合計ジャッジ時間 20,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
117,044 KB
testcase_01 AC 101 ms
77,824 KB
testcase_02 AC 104 ms
77,568 KB
testcase_03 AC 104 ms
77,440 KB
testcase_04 AC 102 ms
77,440 KB
testcase_05 AC 103 ms
77,312 KB
testcase_06 AC 106 ms
77,312 KB
testcase_07 AC 137 ms
79,488 KB
testcase_08 AC 218 ms
82,044 KB
testcase_09 AC 280 ms
84,940 KB
testcase_10 AC 564 ms
116,724 KB
testcase_11 AC 558 ms
117,236 KB
testcase_12 AC 554 ms
116,980 KB
testcase_13 AC 352 ms
117,428 KB
testcase_14 AC 1,950 ms
130,224 KB
testcase_15 AC 1,933 ms
130,864 KB
testcase_16 AC 1,931 ms
129,460 KB
testcase_17 AC 2,016 ms
130,476 KB
testcase_18 AC 1,988 ms
130,740 KB
testcase_19 AC 1,493 ms
124,556 KB
testcase_20 AC 1,542 ms
125,444 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