結果

問題 No.1833 Subway Planning
ユーザー SSRSSSRS
提出日時 2022-02-04 21:49:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,421 ms / 4,000 ms
コード長 2,362 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 216,220 KB
実行使用メモリ 20,836 KB
最終ジャッジ日時 2024-06-11 11:43:44
合計ジャッジ時間 17,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 377 ms
18,856 KB
testcase_05 AC 438 ms
18,896 KB
testcase_06 AC 411 ms
18,916 KB
testcase_07 AC 1,106 ms
18,888 KB
testcase_08 AC 1,021 ms
18,896 KB
testcase_09 AC 1,161 ms
18,896 KB
testcase_10 AC 527 ms
20,548 KB
testcase_11 AC 470 ms
20,836 KB
testcase_12 AC 394 ms
20,712 KB
testcase_13 AC 928 ms
20,572 KB
testcase_14 AC 399 ms
19,740 KB
testcase_15 AC 484 ms
19,868 KB
testcase_16 AC 534 ms
19,200 KB
testcase_17 AC 1,421 ms
19,368 KB
testcase_18 AC 1,304 ms
18,508 KB
testcase_19 AC 639 ms
19,232 KB
testcase_20 AC 510 ms
16,216 KB
testcase_21 AC 776 ms
19,572 KB
testcase_22 AC 683 ms
19,548 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 1000000000;
int main(){
  int N;
  cin >> N;
  vector<tuple<int, int, int>> E(N - 1);
  vector<vector<int>> E2(N);
  for (int i = 0; i < N - 1; i++){
    int A, B, C;
    cin >> A >> B >> C;
    A--;
    B--;
    E[i] = make_tuple(C, A, B);
    E2[A].push_back(B);
    E2[B].push_back(A);
  }
  int tv = INF, fv = -1;
  while (tv - fv > 1){
    int mid = (tv + fv) / 2;
    vector<bool> T(N, false);
    int a = -1;
    for (int i = 0; i < N - 1; i++){
      if (get<0>(E[i]) > mid){
        T[get<1>(E[i])] = true;
        T[get<2>(E[i])] = true;
        a = get<1>(E[i]);
      }
    }
    if (a == -1){
      tv = mid;
    } else {
      vector<int> d1(N, -1);
      d1[a] = 0;
      queue<int> Q1;
      Q1.push(a);
      int s;
      while (!Q1.empty()){
        int v = Q1.front();
        Q1.pop();
        if (T[v]){
          s = v;
        }
        for (int w : E2[v]){
          if (d1[w] == -1){
            d1[w] = d1[v] + 1;
            Q1.push(w);
          }
        }
      }
      vector<int> d2(N, -1);
      d2[s] = 0;
      queue<int> Q2;
      Q2.push(s);
      int t;
      while (!Q2.empty()){
        int v = Q2.front();
        Q2.pop();
        if (T[v]){
          t = v;
        }
        for (int w : E2[v]){
          if (d2[w] == -1){
            d2[w] = d2[v] + 1;
            Q2.push(w);
          }
        }
      }
      vector<int> d3(N, -1);
      d3[t] = 0;
      queue<int> Q3;
      Q3.push(t);
      while (!Q3.empty()){
        int v = Q3.front();
        Q3.pop();
        for (int w : E2[v]){
          if (d3[w] == -1){
            d3[w] = d3[v] + 1;
            Q3.push(w);
          }
        }
      }
      int D = d2[t];
      bool ok = true;
      for (int i = 0; i < N; i++){
        if (T[i]){
          if (d2[i] + d3[i] > D){
            ok = false;
          }
        }
      }
      int mn = INF;
      for (int i = 0; i < N - 1; i++){
        int A = get<1>(E[i]);
        int B = get<2>(E[i]);
        if (d2[A] + d3[B] == D - 1 || d2[B] + d3[A] == D - 1){
          mn = min(mn, get<0>(E[i]));
        }
      }
      for (int i = 0; i < N - 1; i++){
        if (get<0>(E[i]) - mn > mid){
          ok = false;
        }
      }
      if (ok){
        tv = mid;
      } else {
        fv = mid;
      }
    }
  }
  cout << tv << endl;
}
0