結果

問題 No.1898 Battle and Exchange
ユーザー KudeKude
提出日時 2022-04-08 22:33:38
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 2,287 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 235,716 KB
実行使用メモリ 11,504 KB
最終ジャッジ日時 2023-08-19 01:01:22
合計ジャッジ時間 21,018 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,384 KB
testcase_09 AC 8 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 8 ms
4,380 KB
testcase_18 AC 28 ms
4,692 KB
testcase_19 AC 52 ms
5,380 KB
testcase_20 AC 39 ms
5,412 KB
testcase_21 AC 156 ms
9,056 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,500 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 4 ms
4,380 KB
testcase_28 AC 4 ms
4,376 KB
testcase_29 AC 8 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 38 ms
5,388 KB
testcase_33 AC 84 ms
7,056 KB
testcase_34 AC 37 ms
4,952 KB
testcase_35 AC 59 ms
5,884 KB
testcase_36 AC 48 ms
5,836 KB
testcase_37 AC 20 ms
4,380 KB
testcase_38 AC 464 ms
11,504 KB
testcase_39 AC 126 ms
9,744 KB
testcase_40 AC 395 ms
10,396 KB
testcase_41 AC 84 ms
9,488 KB
testcase_42 AC 8 ms
4,376 KB
testcase_43 AC 71 ms
7,908 KB
testcase_44 AC 2 ms
4,376 KB
testcase_45 AC 17 ms
4,380 KB
testcase_46 AC 59 ms
5,432 KB
testcase_47 AC 10 ms
4,380 KB
testcase_48 AC 14 ms
4,376 KB
testcase_49 AC 3 ms
4,376 KB
testcase_50 AC 3 ms
4,380 KB
testcase_51 AC 3 ms
4,376 KB
testcase_52 AC 5 ms
4,380 KB
testcase_53 AC 21 ms
4,720 KB
testcase_54 AC 24 ms
4,812 KB
testcase_55 AC 40 ms
4,620 KB
testcase_56 AC 28 ms
4,852 KB
testcase_57 AC 348 ms
9,868 KB
testcase_58 AC 187 ms
9,904 KB
testcase_59 AC 224 ms
9,848 KB
testcase_60 AC 214 ms
9,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
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>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, m;
  cin >> n >> m;
  VVI to(n);
  rep(_, m) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    to[u].emplace_back(v);
    to[v].emplace_back(u);
  }
  vector<tuple<int, int, int>> d(n);
  rep(i, n) {
    int a, b, c;
    cin >> a >> b >> c;
    d[i] = {a, b, c};
  }
  int l = 0;
  int r = 4e8;
  while(r - l > 1) {
    int mid = (l + r) / 2;
    int a = mid, b = 1, c = 1;
    auto [a0, b0, c0] = d[0];
    if (a0 + b0 + c0 >= a + b + c) {
      l = mid;
      continue;
    }
    int sm_tmp = a + b + max({c, a0, b0, c0});
    bool ok = false;
    for(int v: to[0]) {
      auto [av, bv, cv] = d[v];
      if (sm_tmp > av + bv + cv) {
        ok = true;
        break;
      }
    }
    if (!ok) {
      l = mid;
      continue;
    }
    priority_queue<P, vector<P>, greater<P>> q;
    vector<char> added(n);
    auto push = [&](int v) {
      if (added[v]) return;
      added[v] = true;
      auto [a, b, c] = d[v];
      q.emplace(a + b + c, v);
    };
    push(0);
    while(q.size()) {
      auto [sm, u] = q.top(); q.pop();
      if (sm >= a + b + c) {
        ok = false;
        break;
      }
      if (u == n - 1) break;
      auto [au, bu, cu] = d[u];
      for(int x: {au, bu, cu}) {
        if (x > c) {
          c = x;
          if (b < c) {
            swap(b, c);
            if (a < b) swap(a, b);
          }
        }
      }
      for(int v: to[u]) push(v);
    }
    if (ok) r = mid;
    else l = mid;
  }
  cout << 1 << ' ' << 1 << ' ' << r << '\n';
}
0