結果

問題 No.1582 Vertexes vs Edges
ユーザー SSRSSSRS
提出日時 2021-07-02 21:58:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 175,912 KB
実行使用メモリ 14,328 KB
最終ジャッジ日時 2024-06-29 11:29:31
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,376 KB
testcase_05 AC 71 ms
13,268 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 36 ms
8,192 KB
testcase_09 AC 67 ms
12,580 KB
testcase_10 AC 43 ms
9,088 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 28 ms
7,296 KB
testcase_13 AC 49 ms
9,472 KB
testcase_14 AC 105 ms
9,600 KB
testcase_15 AC 73 ms
11,808 KB
testcase_16 AC 34 ms
7,424 KB
testcase_17 AC 47 ms
9,216 KB
testcase_18 AC 81 ms
13,700 KB
testcase_19 AC 49 ms
9,856 KB
testcase_20 AC 44 ms
8,832 KB
testcase_21 AC 39 ms
8,320 KB
testcase_22 AC 73 ms
12,552 KB
testcase_23 AC 27 ms
6,656 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 37 ms
8,064 KB
testcase_26 AC 28 ms
6,912 KB
testcase_27 AC 69 ms
11,576 KB
testcase_28 AC 21 ms
5,888 KB
testcase_29 AC 56 ms
10,368 KB
testcase_30 AC 36 ms
7,680 KB
testcase_31 AC 57 ms
10,568 KB
testcase_32 AC 24 ms
6,400 KB
testcase_33 AC 93 ms
14,184 KB
testcase_34 AC 90 ms
14,316 KB
testcase_35 AC 96 ms
14,328 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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