結果

問題 No.2387 Yokan Factory
ユーザー as277575as277575
提出日時 2023-07-21 22:05:14
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 651 ms / 5,000 ms
コード長 2,206 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 135,876 KB
実行使用メモリ 10,664 KB
最終ジャッジ日時 2024-09-21 23:36:26
合計ジャッジ時間 8,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bit>
#include <bitset>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <deque>
#include <iostream>
#include <map>
#include <random>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <set>
#include <string>

using namespace::std;

template<typename T, typename U>
ostream& operator<< (ostream& o, const pair<T, U>& p) {
  o << "<" << p.first << ", " << p.second << ">";
  return o;
}

template <typename T>
ostream& operator<< (ostream& o, const vector<T>& v) {
 for (const auto& x : v) o << x << " ";
 return o;
}

template <typename T>
ostream& operator<< (ostream& o, const set<T>& v) {
 for (const auto& x : v) o << x << " ";
 return o;
}

template <typename T>
ostream& operator<< (ostream& o, const deque<T>& v) {
 for (const auto& x : v) o << x << " ";
 return o;
}

template <typename K, typename V>
ostream& operator<<(ostream& o, const unordered_map<K, V>& m) {
  o << "{";
  for (const auto& [k, v] : m)
    o << " " << k << ": " << v << ",";
  o << "}";
  return o;
}

template <typename T>
istream& operator>> (istream& i, vector<T>& v) {
  for (auto& x : v) i >> x;
  return i;
}

istream& operator>> (istream& i, pair<int, int>& p) {
  i >> p.first >> p.second;
  return i;
}



int main() {
  ios::sync_with_stdio(false);
  long long n, m, x;
  cin >> n >> m >> x;
  vector<vector<tuple<int, int, int>>> e(n + 1);
  for (int i = 0; i < m; ++i) {
    int u, v, a, b;
    cin >> u >> v >> a >> b;
    e[u].push_back({v, a, b});
    e[v].push_back({u, a, b});
  }
  const long long inf = 1e18 + 7;
  long long a = 0, b = 1e9+7;
  while (a <= b) {
    //cerr << " a " << a << " b " << b << endl;
    long long mid = (a + b) / 2;
    vector<long long> dis(n + 1, inf);
    set<pair<long long, int>> q {{0, 1}};
    while (q.size()) {
      auto [d, u] = *q.begin();
      q.erase(q.begin());
      //cerr << " d " << d << " u " << u << endl;
      if (dis[u] < inf) continue;
      dis[u] = d;
      for (auto [v, l, w] : e[u])
        if (mid <= w && dis[v] == inf)
          q.insert({d + l, v});
    }
    if (dis[n] > x) b = mid - 1;
    else a = mid + 1;
  }
  cout << b << endl;
  
  return 0;
}


0