結果
問題 | No.2739 Time is money |
ユーザー | ponjuice |
提出日時 | 2024-04-17 11:44:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 2,350 ms |
コンパイル使用メモリ | 213,868 KB |
実行使用メモリ | 24,724 KB |
最終ジャッジ日時 | 2024-10-09 05:49:39 |
合計ジャッジ時間 | 11,113 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 183 ms
13,440 KB |
testcase_03 | AC | 326 ms
17,540 KB |
testcase_04 | AC | 173 ms
12,980 KB |
testcase_05 | AC | 238 ms
13,184 KB |
testcase_06 | AC | 312 ms
15,944 KB |
testcase_07 | AC | 388 ms
19,956 KB |
testcase_08 | AC | 390 ms
20,276 KB |
testcase_09 | AC | 387 ms
20,428 KB |
testcase_10 | AC | 327 ms
19,616 KB |
testcase_11 | AC | 385 ms
20,280 KB |
testcase_12 | AC | 328 ms
18,804 KB |
testcase_13 | AC | 332 ms
18,776 KB |
testcase_14 | AC | 304 ms
18,848 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; const ll INF = 1e18; int main(){ ll n, m, x; cin >> n >> m >> x; vector<vector<pair<int, ll>>> graph(n); for (int i = 0; i < m; i++) { ll u, v, c, t; cin >> u >> v >> c >> t; u--, v--; graph[u].emplace_back(v, t * x + c); graph[v].emplace_back(u, t * x + c); } priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> q; vector<ll> cst(n, INF); q.push({0, 0}); cst[0] = 0; while (!q.empty()) { auto [c, p] = q.top(); q.pop(); for(auto [to, cp] : graph[p]){ if(cst[p] + cp < cst[to]){ cst[to] = cst[p] + cp; q.push({cst[to], to}); } } } if(cst[n - 1] == INF){ cout << -1 << endl; }else{ cout << (cst[n-1] + x - 1) / x << endl; } }