結果
問題 | No.2739 Time is money |
ユーザー | tkykwtnb |
提出日時 | 2024-04-20 19:53:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,013 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 298,316 KB |
最終ジャッジ日時 | 2024-10-12 17:50:40 |
合計ジャッジ時間 | 22,242 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
58,752 KB |
testcase_01 | AC | 44 ms
53,760 KB |
testcase_02 | AC | 492 ms
163,052 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 488 ms
162,440 KB |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 873 ms
237,688 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,220 ms
261,344 KB |
testcase_13 | AC | 1,215 ms
261,100 KB |
testcase_14 | AC | 1,150 ms
238,460 KB |
testcase_15 | WA | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
from collections import deque,defaultdict N,M,X=map(int,input().split()) G=[[] for _ in range(N)] C=defaultdict(int) T=defaultdict(int) for _ in range(M): u,v,c,t=map(int,input().split()) u-=1;v-=1 G[u].append(v) G[v].append(u) C[(u,v)]=c C[(v,u)]=c T[(u,v)]=t T[(v,u)]=t vis=[(-1,-1,-1) for _ in range(N)] attr=defaultdict(tuple) Q=deque() attr[0]=(0,0,0) Q.append(0) while Q: now=Q.popleft() m,c,t=attr[now] del attr[now] vis[now]=(m,c,t) for nxt in G[now]: if c+C[(now,nxt)]>m: work=(m-c+C[(now,nxt)]+X-1)//X else: work=0 if vis[nxt]==(-1,-1,-1) or t+T[(now,nxt)]+work<vis[nxt][2]: if nxt in attr.keys(): mm,cc,tt=attr[nxt] if t+T[(now,nxt)]+work<tt: attr[nxt]=(m+X*work,c+C[(now,nxt)],t+T[(now,nxt)]+work) else: attr[nxt]=(m+X*work,c+C[(now,nxt)],t+T[(now,nxt)]+work) Q.append(nxt) print(vis[N-1][2])