結果
| 問題 | No.2739 Time is money |
| コンテスト | |
| ユーザー |
Yudai0606Nazo
|
| 提出日時 | 2025-08-03 12:04:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 445 ms / 2,000 ms |
| コード長 | 2,058 bytes |
| コンパイル時間 | 4,353 ms |
| コンパイル使用メモリ | 260,116 KB |
| 実行使用メモリ | 20,508 KB |
| 最終ジャッジ日時 | 2025-08-03 12:04:49 |
| 合計ジャッジ時間 | 12,833 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
#ifndef ONLINE_JUDGE
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
#include <cassert>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
//using mint = modint1000000007;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repu(i, s, t) for (int i = (int)(s); i < (int)(t); i++)
#define repd(i, s, t) for (int i = (int)(s)-1; i >= (int)(t); i--)
#define all(v) v.begin(), v.end()
void _u() { cerr << endl; } template <class H, class... T> void _u(H&& h, T&&... t) { cerr << h << ", "; _u(move(t)...); }
#define U(...) { cerr << #__VA_ARGS__ << ": "; _u(__VA_ARGS__); }
template<typename T> bool chmax(T &a, const T b) { if(a >= b) return false; a = b; return true; }
template<typename T> bool chmin(T &a, const T b) { if(a <= b) return false; a = b; return true; }
template<typename T> istream& operator>>(istream &in, vector<T> &a) { for(T &x: a) in >> x; return in; }
template<typename T> ostream& operator<<(ostream &out, const vector<T> &a) { for(const T &x: a) out << x << ' '; return out; }
const int di[] = {1, 0, -1, 0, 1, 1, -1, -1, 0};
const int dj[] = {0, 1, 0, -1, -1, 1, 1, -1, 0};
int main() {
int n, m, x;
cin >> n >> m >> x;
vector<vector<pair<int, ll>>> g(n);
rep(i, m) {
int u, v, c, t;
cin >> u >> v >> c >> t;
u--, v--;
g[u].emplace_back(v, c+ll(t)*x);
g[v].emplace_back(u, c+ll(t)*x);
}
const ll INF = 1e18;
vector<ll> dist(n, INF);
priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> pq;
dist[0] = 0;
pq.emplace(0, 0);
while(!pq.empty()) {
auto[d, pos] = pq.top(); pq.pop();
if(dist[pos] < d) continue;
for(auto[to, c]: g[pos]) {
ll nd = d + c;
if(dist[to] <= nd) continue;
dist[to] = nd;
pq.emplace(nd, to);
}
}
if(dist[n-1] >= INF) {
cout << -1 << endl;
} else {
cout << (dist[n-1] + x - 1) / x << endl;
}
return 0;
}
Yudai0606Nazo