結果

問題 No.806 木を道に
ユーザー pekempeypekempey
提出日時 2019-03-22 23:15:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 71,800 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-09-19 06:40:07
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 AC 3 ms
5,632 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 17 ms
6,400 KB
testcase_11 AC 16 ms
6,400 KB
testcase_12 AC 57 ms
8,448 KB
testcase_13 AC 43 ms
7,808 KB
testcase_14 AC 58 ms
8,192 KB
testcase_15 AC 58 ms
8,576 KB
testcase_16 AC 22 ms
6,784 KB
testcase_17 AC 50 ms
8,192 KB
testcase_18 AC 8 ms
6,016 KB
testcase_19 AC 17 ms
6,528 KB
testcase_20 AC 51 ms
8,192 KB
testcase_21 AC 29 ms
7,168 KB
testcase_22 AC 68 ms
8,960 KB
testcase_23 AC 67 ms
8,832 KB
testcase_24 AC 33 ms
7,296 KB
testcase_25 AC 51 ms
8,192 KB
testcase_26 AC 19 ms
7,040 KB
testcase_27 AC 59 ms
8,952 KB
testcase_28 AC 4 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>

using namespace std;

vector<int> G[100000];

int main() {
  int N;
  cin >> N;
  for (int i = 0; i < N - 1; i++) {
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  int ans = 0;
  for (int i = 0; i < N; i++) {
    if (G[i].size() >= 3) {
      ans += G[i].size() - 2;
    }
  }
  cout << ans << '\n';
}
0