結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | yuppe19 😺 |
提出日時 | 2016-12-18 10:49:37 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,017 bytes |
コンパイル時間 | 1,896 ms |
コンパイル使用メモリ | 76,716 KB |
実行使用メモリ | 187,756 KB |
最終ジャッジ日時 | 2024-05-08 06:26:39 |
合計ジャッジ時間 | 12,052 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
82,492 KB |
testcase_01 | AC | 69 ms
75,664 KB |
testcase_02 | AC | 71 ms
75,272 KB |
testcase_03 | AC | 154 ms
78,988 KB |
testcase_04 | AC | 70 ms
75,400 KB |
testcase_05 | AC | 110 ms
78,748 KB |
testcase_06 | AC | 105 ms
78,008 KB |
testcase_07 | AC | 112 ms
79,168 KB |
testcase_08 | AC | 113 ms
79,136 KB |
testcase_09 | AC | 113 ms
78,892 KB |
testcase_10 | AC | 118 ms
79,004 KB |
testcase_11 | AC | 116 ms
79,148 KB |
testcase_12 | AC | 115 ms
79,024 KB |
testcase_13 | AC | 115 ms
79,096 KB |
testcase_14 | AC | 406 ms
81,396 KB |
testcase_15 | AC | 435 ms
82,224 KB |
testcase_16 | AC | 448 ms
81,532 KB |
testcase_17 | AC | 466 ms
81,460 KB |
testcase_18 | AC | 410 ms
80,960 KB |
testcase_19 | AC | 436 ms
81,464 KB |
testcase_20 | AC | 446 ms
81,512 KB |
testcase_21 | AC | 429 ms
81,676 KB |
testcase_22 | AC | 423 ms
82,272 KB |
testcase_23 | AC | 415 ms
81,612 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#!/usr/bin/python2 # -*- coding: utf-8 -*- # † from heapq import heappush, heappop n, m = map(int, raw_input().split()) G0 = [[] for i in range(n)] rG = [[] for i in range(n)] for _ in xrange(m): a, b, c = map(int, raw_input().split()) G0[a].append((b, c)) rG[b].append((a, c)) cost0 = [-1] * n # cost0[n] cost0[0] = 0 que0 = [] heappush(que0, [0, 0]) while len(que0): c, v = heappop(que0) if c < cost0[v]: continue for e in G0[v]: if cost0[e[0]] < cost0[v] + e[1]: cost0[e[0]] = cost0[v] + e[1] heappush(que0, [cost0[e[0]], e[0]]) rcost = [-1] * n # rcost[n] rcost[n-1] = 0 rq = [] heappush(rq, [0, n-1]) while len(rq): c, v = heappop(rq) if c < rcost[v]: continue for e in rG[v]: if rcost[e[0]] < rcost[v] + e[1]: rcost[e[0]] = rcost[v] + e[1] heappush(rq, [rcost[e[0]], e[0]]) days = cost0[n-1] cnt = sum(cost0[i] != days - rcost[i] for i in xrange(n)) print '{} {}/{}'.format(days, cnt, n)