結果

問題 No.1898 Battle and Exchange
ユーザー SSRSSSRS
提出日時 2022-04-08 22:35:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 215,464 KB
実行使用メモリ 11,416 KB
最終ジャッジ日時 2024-05-06 08:09:01
合計ジャッジ時間 23,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 53 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 124 ms
5,376 KB
testcase_19 AC 199 ms
5,504 KB
testcase_20 AC 224 ms
5,632 KB
testcase_21 AC 598 ms
9,216 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 35 ms
5,376 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 153 ms
5,376 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 127 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 98 ms
5,376 KB
testcase_35 AC 167 ms
6,272 KB
testcase_36 AC 102 ms
5,760 KB
testcase_37 AC 69 ms
5,376 KB
testcase_38 AC 728 ms
11,416 KB
testcase_39 AC 575 ms
9,936 KB
testcase_40 AC 717 ms
10,820 KB
testcase_41 AC 501 ms
9,676 KB
testcase_42 AC 22 ms
5,376 KB
testcase_43 AC 403 ms
7,936 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 44 ms
5,376 KB
testcase_46 AC 204 ms
5,376 KB
testcase_47 AC 43 ms
5,376 KB
testcase_48 AC 100 ms
5,376 KB
testcase_49 AC 29 ms
5,376 KB
testcase_50 AC 29 ms
5,376 KB
testcase_51 AC 29 ms
5,376 KB
testcase_52 AC 64 ms
5,376 KB
testcase_53 AC 297 ms
5,376 KB
testcase_54 AC 422 ms
5,424 KB
testcase_55 AC 343 ms
5,388 KB
testcase_56 AC 450 ms
5,532 KB
testcase_57 WA -
testcase_58 AC 684 ms
9,856 KB
testcase_59 AC 669 ms
9,856 KB
testcase_60 AC 649 ms
9,856 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