結果
問題 | No.2387 Yokan Factory |
ユーザー | Kude |
提出日時 | 2023-07-21 21:34:52 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 220 ms / 5,000 ms |
コード長 | 2,324 bytes |
コンパイル時間 | 2,626 ms |
コンパイル使用メモリ | 241,048 KB |
実行使用メモリ | 10,636 KB |
最終ジャッジ日時 | 2024-09-21 22:54:00 |
合計ジャッジ時間 | 5,675 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 35 |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic warning "-Wunused-function" using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; template<class T> std::vector<unsigned long long> dijkstra(std::vector<std::vector<std::pair<int,T>>>& to, int s=0) { const unsigned long long INF = 1002003004005006007; struct QueElem { int v; unsigned long long c; bool operator<(const QueElem a) const {return c > a.c;} QueElem(int v, unsigned long long c): v(v), c(c) {} }; std::priority_queue<QueElem> q; std::vector<unsigned long long> dist(to.size(), INF); dist[s] = 0; q.emplace(s, 0); while(!q.empty()) { QueElem qe = q.top(); q.pop(); int u = qe.v; unsigned long long c = qe.c; if (c > dist[u]) continue; for(auto vc: to[u]) { int v = vc.first; unsigned long long nc = c + vc.second; if (nc < dist[v]) { dist[v] = nc; q.emplace(v, nc); } } } return dist; } } int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; ll x; cin >> n >> m >> x; struct E { int u, v, a, b; }; vector<E> es(m); for(auto& [u, v, a, b] : es) { cin >> u >> v >> a >> b; u--, v--; } sort(all(es), [](const E& x, const E& y) { return x.b > y.b; }); int l = 0, r = m + 1; vector<vector<P>> to(n); while(r - l > 1) { int c = (l + r) / 2; rep(i, n) to[i].clear(); rep(i, c) { auto [u, v, a, b] = es[i]; to[u].emplace_back(v, a); to[v].emplace_back(u, a); } (dijkstra(to)[n - 1] <= x ? r : l) = c; } int ans = r == m + 1 ? -1 : es[r - 1].b; cout << ans << '\n'; }