結果
問題 | No.2739 Time is money |
ユーザー | GOTKAKO |
提出日時 | 2024-04-20 10:27:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 263 ms / 2,000 ms |
コード長 | 1,269 bytes |
コンパイル時間 | 2,598 ms |
コンパイル使用メモリ | 222,360 KB |
実行使用メモリ | 25,604 KB |
最終ジャッジ日時 | 2024-10-12 05:59:26 |
合計ジャッジ時間 | 6,980 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 90 ms
16,256 KB |
testcase_03 | AC | 197 ms
22,124 KB |
testcase_04 | AC | 85 ms
15,744 KB |
testcase_05 | AC | 132 ms
16,608 KB |
testcase_06 | AC | 182 ms
21,052 KB |
testcase_07 | AC | 255 ms
24,468 KB |
testcase_08 | AC | 263 ms
24,888 KB |
testcase_09 | AC | 251 ms
25,276 KB |
testcase_10 | AC | 185 ms
24,228 KB |
testcase_11 | AC | 254 ms
25,124 KB |
testcase_12 | AC | 173 ms
23,528 KB |
testcase_13 | AC | 176 ms
23,564 KB |
testcase_14 | AC | 164 ms
23,528 KB |
testcase_15 | AC | 112 ms
23,668 KB |
testcase_16 | AC | 119 ms
21,636 KB |
testcase_17 | AC | 248 ms
25,424 KB |
testcase_18 | AC | 248 ms
25,604 KB |
testcase_19 | AC | 156 ms
23,036 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); long long N,M,X; cin >> N >> M >> X; vector<vector<tuple<int,long long,long long>>> Graph(N); for(int i=0; i<M; i++){ int u,v; cin >> u >> v; u--; v--; long long c,t; cin >> c >> t; Graph.at(u).push_back({v,c%X,t+c/X}); Graph.at(v).push_back({u,c%X,t+c/X}); } long long inf = 1e18; vector<bool> already(N); vector<pair<long long,long long>> dist(N,{inf,inf}); priority_queue<tuple<long long,long long,int>,vector<tuple<long long,long long,int>>,greater<>> Q; dist.at(0) = {0,0}; Q.push({0,0,0}); while(Q.size()){ auto[T,C,pos] = Q.top(); Q.pop(); if(already.at(pos)) continue; already.at(pos) = true; C *= -1; for(auto [to,c,t] : Graph.at(pos)){ if(already.at(to)) continue; if(C < c){if(dist.at(to) > make_pair(T+t+1,c-C-X)) dist.at(to) = {T+t+1,c-C-X},Q.push({T+t+1,c-C-X,to});} else if(dist.at(to) > make_pair(T+t,c-C)) dist.at(to) = {T+t,c-C},Q.push({T+t,c-C,to}); } } if(dist.at(N-1).first == inf) cout << -1 << endl; else cout << dist.at(N-1).first << endl; }