結果

問題 No.2532 Want Play More
ユーザー SSRSSSRS
提出日時 2023-11-03 21:41:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 210,956 KB
実行使用メモリ 28,396 KB
最終ジャッジ日時 2024-09-25 19:45:00
合計ジャッジ時間 5,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 222 ms
25,812 KB
testcase_02 AC 209 ms
25,952 KB
testcase_03 AC 207 ms
25,024 KB
testcase_04 AC 195 ms
24,596 KB
testcase_05 AC 188 ms
24,024 KB
testcase_06 AC 160 ms
28,396 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 86 ms
13,756 KB
testcase_11 AC 90 ms
13,616 KB
testcase_12 AC 149 ms
20,072 KB
testcase_13 AC 96 ms
15,732 KB
testcase_14 AC 31 ms
7,424 KB
testcase_15 AC 208 ms
25,616 KB
testcase_16 AC 172 ms
22,096 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 127 ms
17,716 KB
testcase_19 AC 184 ms
22,584 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 120 ms
24,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 1000000;
int main(){
  int N;
  cin >> N;
  vector<vector<int>> E(N);
  for (int i = 0; i < N - 1; i++){
    int a, b;
    cin >> a >> b;
    a--;
    b--;
    E[a].push_back(b);
    E[b].push_back(a);
  }
  vector<int> p(N, -1);
  vector<vector<int>> c(N);
  vector<int> b;
  queue<int> Q;
  Q.push(0);
  while (!Q.empty()){
    int v = Q.front();
    Q.pop();
    b.push_back(v);
    for (int w : E[v]){
      if (w != p[v]){
        p[w] = v;
        c[v].push_back(w);
        Q.push(w);
      }
    }
  }
  reverse(b.begin(), b.end());
  vector<int> mn(N, INF), mx(N, -INF);
  for (int v : b){
    if (c[v].empty()){
      mn[v] = 0;
      mx[v] = 0;
    } else {
      for (int w : c[v]){
        mn[v] = min(mn[v], mx[w] + 1);
        mx[v] = max(mx[v], mn[w] + 1);
      }
    }
  }
  cout << mx[0] << endl;
  cout << mn[0] << endl;
}
0