結果

問題 No.1898 Battle and Exchange
ユーザー SSRSSSRS
提出日時 2022-04-08 22:35:02
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 216,868 KB
実行使用メモリ 11,484 KB
最終ジャッジ日時 2024-11-28 13:19:44
合計ジャッジ時間 21,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 54 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 29 ms
6,816 KB
testcase_18 AC 127 ms
6,816 KB
testcase_19 AC 200 ms
6,820 KB
testcase_20 AC 213 ms
6,820 KB
testcase_21 AC 583 ms
9,216 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 7 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 36 ms
6,820 KB
testcase_28 AC 48 ms
6,820 KB
testcase_29 AC 148 ms
6,816 KB
testcase_30 AC 11 ms
6,816 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 116 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 100 ms
6,820 KB
testcase_35 AC 167 ms
6,816 KB
testcase_36 AC 99 ms
6,820 KB
testcase_37 AC 69 ms
6,816 KB
testcase_38 AC 729 ms
11,484 KB
testcase_39 AC 552 ms
9,932 KB
testcase_40 AC 610 ms
10,696 KB
testcase_41 AC 488 ms
9,544 KB
testcase_42 AC 26 ms
6,820 KB
testcase_43 AC 400 ms
7,936 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 44 ms
6,816 KB
testcase_46 AC 192 ms
6,816 KB
testcase_47 AC 43 ms
6,820 KB
testcase_48 AC 99 ms
6,816 KB
testcase_49 AC 29 ms
6,820 KB
testcase_50 AC 30 ms
6,816 KB
testcase_51 AC 29 ms
6,820 KB
testcase_52 AC 66 ms
6,816 KB
testcase_53 AC 290 ms
6,820 KB
testcase_54 AC 430 ms
6,820 KB
testcase_55 AC 341 ms
6,816 KB
testcase_56 AC 459 ms
6,816 KB
testcase_57 WA -
testcase_58 AC 671 ms
9,984 KB
testcase_59 AC 672 ms
9,856 KB
testcase_60 AC 643 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 300000000;
int main(){
  int N, M;
  cin >> N >> M;
  vector<vector<int>> E(N);
  for (int i = 0; i < M; i++){
    int U, V;
    cin >> U >> V;
    U--;
    V--;
    E[U].push_back(V);
    E[V].push_back(U);
  }
  vector<int> A(N), B(N), C(N);
  for (int i = 0; i < N; i++){
    cin >> A[i] >> B[i] >> C[i];
  }
  int mn = INF;
  for (int v : E[0]){
    mn = min(mn, A[v] + B[v] + C[v]);
  }
  int tv = 300000000, fv = A[0] + B[0] + C[0] - 2;
  while (tv - fv > 1){
    int mid = (tv + fv) / 2;
    int a = mid, b = 1, c = 1;
    if (mid - 1 + max({A[0], B[0], C[0]}) < mn){
      fv = mid;
    } else {
      vector<bool> used(N, false);
      priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq;
      pq.push(make_pair(A[0] + B[0] + C[0], 0));
      while (!pq.empty()){
        int sum = pq.top().first;
        int v = pq.top().second;
        pq.pop();
        if (!used[v] && sum < a + b + c){
          used[v] = true;
          vector<int> tmp = {a, b, c, A[v], B[v], C[v]};
          sort(tmp.begin(), tmp.end(), greater<int>());
          a = tmp[0];
          b = tmp[1];
          c = tmp[2];
          for (int w : E[v]){
            if (!used[w]){
              pq.push(make_pair(A[w] + B[w] + C[w], w));
            }
          }
        }
      }
      if (used[N - 1]){
        tv = mid;
      } else {
        fv = mid;
      }
    }
  }
  cout << tv << ' ' << 1 << ' ' << 1 << endl;
}
0