結果
問題 | No.2764 Warp Drive Spacecraft |
ユーザー | rniya |
提出日時 | 2024-05-17 22:43:27 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 322 ms / 3,000 ms |
コード長 | 3,477 bytes |
コンパイル時間 | 3,432 ms |
コンパイル使用メモリ | 264,204 KB |
実行使用メモリ | 26,064 KB |
最終ジャッジ日時 | 2024-07-17 20:24:06 |
合計ジャッジ時間 | 9,569 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 104 ms
22,016 KB |
testcase_17 | AC | 108 ms
22,044 KB |
testcase_18 | AC | 105 ms
21,932 KB |
testcase_19 | AC | 206 ms
19,940 KB |
testcase_20 | AC | 224 ms
21,340 KB |
testcase_21 | AC | 229 ms
20,156 KB |
testcase_22 | AC | 226 ms
21,268 KB |
testcase_23 | AC | 203 ms
20,076 KB |
testcase_24 | AC | 207 ms
21,224 KB |
testcase_25 | AC | 206 ms
21,292 KB |
testcase_26 | AC | 298 ms
25,104 KB |
testcase_27 | AC | 302 ms
25,100 KB |
testcase_28 | AC | 298 ms
25,512 KB |
testcase_29 | AC | 315 ms
25,456 KB |
testcase_30 | AC | 307 ms
24,960 KB |
testcase_31 | AC | 322 ms
26,064 KB |
testcase_32 | AC | 310 ms
25,924 KB |
testcase_33 | AC | 113 ms
15,348 KB |
testcase_34 | AC | 104 ms
15,228 KB |
testcase_35 | AC | 108 ms
15,360 KB |
testcase_36 | AC | 114 ms
22,044 KB |
testcase_37 | AC | 125 ms
19,380 KB |
testcase_38 | AC | 99 ms
17,408 KB |
ソースコード
#include <bits/stdc++.h> #ifdef LOCAL #include <debug.hpp> #else #define debug(...) void(0) #endif template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) { for (auto& e : v) { is >> e; } return is; } template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) { for (std::string_view sep = ""; const auto& e : v) { os << std::exchange(sep, " ") << e; } return os; } template <class T, class U = T> bool chmin(T& x, U&& y) { return y < x and (x = std::forward<U>(y), true); } template <class T, class U = T> bool chmax(T& x, U&& y) { return x < y and (x = std::forward<U>(y), true); } template <class T> void mkuni(std::vector<T>& v) { std::ranges::sort(v); auto result = std::ranges::unique(v); v.erase(result.begin(), result.end()); } template <class T> int lwb(const std::vector<T>& v, const T& x) { return std::distance(v.begin(), std::ranges::lower_bound(v, x)); } struct Line { mutable long long k, m, p; bool operator<(const Line& o) const { return k < o.k; } bool operator<(long long x) const { return p < x; } }; template <bool isMin = true> struct LineContainer : std::multiset<Line, std::less<>> { // (for doubles, use inf = 1/.0, div(a,b) = a/b) const long long inf = LLONG_MAX / 2; long long div(long long a, long long b) { // floored division return a / b - ((a ^ b) < 0 && a % b); } bool isect(iterator x, iterator y) { if (y == end()) { x->p = inf; return false; } if (x->k == y->k) x->p = x->m > y->m ? inf : -inf; else x->p = div(y->m - x->m, x->k - y->k); return x->p >= y->p; } void add(long long k, long long m) { if (isMin) k = -k, m = -m; auto z = insert({k, m, 0}), y = z++, x = y; while (isect(y, z)) z = erase(z); if (x != begin() && isect(--x, y)) isect(x, y = erase(y)); while ((y = x) != begin() && (--x)->p >= y->p) isect(x, erase(y)); } long long query(long long x) { assert(!empty()); auto l = *lower_bound(x); long long s = 1; if (isMin) s = -1; return s * (l.k * x + l.m); } }; using ll = long long; using namespace std; constexpr ll INF = 4e18; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); int N, M; cin >> N >> M; vector<ll> W(N); cin >> W; vector<vector<pair<int, ll>>> G(N); for (; M--;) { int U, V; ll T; cin >> U >> V >> T; U--, V--; G[U].emplace_back(V, T); G[V].emplace_back(U, T); } auto calc = [&](int s) { vector<ll> dp(N, INF); priority_queue<pair<ll, int>> pq; dp[s] = 0; pq.emplace(-dp[s], s); while (not pq.empty()) { auto [val, v] = pq.top(); pq.pop(); val *= -1; if (dp[v] != val) continue; for (auto [u, cost] : G[v]) { if (chmin(dp[u], val + cost)) { pq.emplace(-dp[u], u); } } } return dp; }; auto f = calc(0), g = calc(N - 1); ll ans = f[N - 1]; LineContainer lc; for (int i = 0; i < N; i++) lc.add(W[i], g[i]); for (int i = 0; i < N; i++) chmin(ans, f[i] + lc.query(W[i])); cout << ans << '\n'; return 0; }