結果
問題 | No.2569 はじめてのおつかいHard |
ユーザー | navel_tos |
提出日時 | 2023-12-02 16:17:56 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,184 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 157,468 KB |
最終ジャッジ日時 | 2024-09-26 20:06:47 |
合計ジャッジ時間 | 16,312 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,506 ms
134,668 KB |
testcase_01 | AC | 1,463 ms
133,904 KB |
testcase_02 | AC | 1,501 ms
135,160 KB |
testcase_03 | AC | 1,482 ms
134,808 KB |
testcase_04 | AC | 1,496 ms
134,532 KB |
testcase_05 | AC | 1,242 ms
157,056 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 656 ms
153,216 KB |
testcase_08 | AC | 1,188 ms
157,468 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 42 ms
52,736 KB |
testcase_11 | AC | 42 ms
52,608 KB |
ソースコード
#緑以下Ex-A import heapq as hq N,M = map(int,input().split()) #G[i][x]: xは0なら行き、1なら帰り G = [[[] for _ in range(2)] for _ in range(N)] for _ in range(M): u,v,t = map(lambda x:int(x)-1,input().split()); t+=1 G[u][0].append((v,t)); G[v][1].append((u,t)) #dist_1[k]: 町N-2→町k, 町k→町N-2 dist_1 = [[10**18]*2 for _ in range(N)] Q = [(0,N-2,0),(0,N-2,1)] while Q: time,now,x = hq.heappop(Q) if dist_1[now][x] < time: continue dist_1[now][x] = time for next,cost in G[now][x]: if dist_1[next][x] > time + cost: hq.heappush(Q,(time+cost, next, x)) #dist_2[k]: 町N-1→町k, 町k→町N-1 dist_2 = [[10**18]*2 for _ in range(N)] Q = [(0,N-1,0),(0,N-1,1)] while Q: time,now,x = hq.heappop(Q) if dist_2[now][x] < time: continue dist_2[now][x] = time for next,cost in G[now][x]: if dist_2[next][x] > time + cost: hq.heappush(Q,(time+cost, next, x)) #順に答えを出力 for k in range(N-2): ans = 10**18 ans = min(ans, dist_1[k][1] + dist_1[N-1][0] + dist_2[k][0]) ans = min(ans, dist_2[k][1] + dist_2[N-2][0] + dist_1[k][0]) print(ans if ans < 10**18 else -1)