結果

問題 No.2764 Warp Drive Spacecraft
ユーザー kusaf_kusaf_
提出日時 2024-06-07 04:37:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 3,000 ms
コード長 3,693 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 270,776 KB
実行使用メモリ 25,932 KB
最終ジャッジ日時 2024-07-17 20:25:18
合計ジャッジ時間 10,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 108 ms
23,520 KB
testcase_17 AC 108 ms
23,408 KB
testcase_18 AC 107 ms
23,524 KB
testcase_19 AC 252 ms
19,940 KB
testcase_20 AC 261 ms
21,344 KB
testcase_21 AC 256 ms
20,284 KB
testcase_22 AC 265 ms
21,268 KB
testcase_23 AC 253 ms
20,040 KB
testcase_24 AC 262 ms
21,348 KB
testcase_25 AC 256 ms
21,288 KB
testcase_26 AC 366 ms
25,232 KB
testcase_27 AC 358 ms
24,976 KB
testcase_28 AC 370 ms
25,508 KB
testcase_29 AC 362 ms
25,448 KB
testcase_30 AC 361 ms
24,912 KB
testcase_31 AC 381 ms
25,932 KB
testcase_32 AC 371 ms
25,924 KB
testcase_33 AC 120 ms
15,348 KB
testcase_34 AC 119 ms
15,228 KB
testcase_35 AC 117 ms
15,360 KB
testcase_36 AC 114 ms
23,564 KB
testcase_37 AC 116 ms
19,252 KB
testcase_38 AC 96 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<typename T, bool isMin> struct ConvexHullTrick {
 private:
  deque<pair<T, T>> H;
  inline int sgn(T x) { return x == 0 ? 0 : (x < 0 ? -1 : 1); }
  inline bool check(const pair<T, T> &a, const pair<T, T> &b, const pair<T, T> &c) {
    if(b.second == a.second || c.second == b.second) { return sgn(b.first - a.first) * sgn(c.second - b.second) >= sgn(c.first - b.first) * sgn(b.second - a.second); }
    if(is_integral<T>::value) { return (b.second - a.second) / (a.first - b.first) >= (c.second - b.second) / (b.first - c.first); }
    else { return (b.first - a.first) * sgn(c.second - b.second) / abs(b.second - a.second) >= (c.first - b.first) * sgn(b.second - a.second) / abs(c.second - b.second); }
  }
  inline T get_y(const pair<T, T> &a, const T &x) { return a.first * x + a.second; }

 public:
  ConvexHullTrick() = default;
  bool empty() const { return H.empty(); }
  void clear() { H.clear(); }
  void add(T a, T b) {  // O(n) in total
    if(!isMin) { a *= -1, b *= -1; }
    pair<T, T> line(a, b);
    if(empty()) {
      H.emplace_front(line);
      return;
    }
    if(H.front().first <= a) {
      if(H.front().first == a) {
        if(H.front().second <= b) { return; }
        H.pop_front();
      }
      while(H.size() >= 2 && check(line, H.front(), H[1])) { H.pop_front(); }
      H.emplace_front(line);
    }
    else {
      assert(a <= H.back().first);
      if(H.back().first == a) {
        if(H.back().second <= b) { return; }
        H.pop_back();
      }
      while(H.size() >= 2 && check(H[H.size() - 2], H.back(), line)) { H.pop_back(); }
      H.emplace_back(line);
    }
  }
  T query(T x) {  // O(log n)
    assert(!empty());
    int l = -1, r = H.size() - 1;
    while(l + 1 < r) {
      int m = (l + r) >> 1;
      get_y(H[m], x) >= get_y(H[m + 1], x) ? l = m : r = m;
    }
    return isMin ? get_y(H[r], x) : -get_y(H[r], x);
  }
  T query_inc(T x) {  // query の x が広義単調増加の場合,全体で O(n+q)
    assert(!empty());
    while(H.size() >= 2 && get_y(H.front(), x) >= get_y(H[1], x)) { H.pop_front(); }
    return isMin ? get_y(H.front(), x) : -get_y(H.front(), x);
  }
  T query_dec(T x) {  // query の x が広義単調減少の場合,全体で O(n+q)
    assert(!empty());
    while(H.size() >= 2 && get_y(H.back(), x) >= get_y(H[H.size() - 2], x)) { H.pop_back(); }
    return isMin ? get_y(H.back(), x) : -get_y(H.back(), x);
  }
};

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, M;
  cin >> N >> M;

  vector<ll> W(N);
  for(auto &i : W) { cin >> i; }

  vector<vector<pair<ll, ll>>> g(N);
  for(ll i = 0, u, v, t; i < M; i++) {
    cin >> u >> v >> t;
    u--, v--;
    g[u].emplace_back(v, t);
    g[v].emplace_back(u, t);
  }

  auto Dijkstra = [&](ll s) {
    auto chmin = [&](auto &a, const auto &b) { return a > b ? (a = b, true) : false; };
    vector<ll> d(N, 1e18);
    d[s] = 0;
    priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> q;
    q.emplace(0, s);
    while(!q.empty()) {
      auto [tmp, v] = q.top();
      q.pop();
      if(tmp > d[v]) { continue; }
      for(auto &[nv, c] : g[v]) {
        if(chmin(d[nv], d[v] + c)) { q.emplace(d[nv], nv); }
      }
    }
    return d;
  };

  auto s = Dijkstra(0), t = Dijkstra(N - 1);

  vector<ll> idx(N);
  iota(idx.begin(), idx.end(), 0);
  ranges::sort(idx, [&](auto i, auto j) { return W[i] < W[j]; });

  ConvexHullTrick<ll, true> C;
  for(ll i = 0; i < N; i++) { C.add(W[idx[i]], t[idx[i]]); }

  ll ans = s[N - 1];
  for(ll i = 0; i < N; i++) { ans = min(ans, s[idx[i]] + C.query_inc(W[idx[i]])); }

  cout << ans << "\n";
}
0