結果

問題 No.806 木を道に
ユーザー 👑 CleyLCleyL
提出日時 2022-05-02 18:34:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 8,952 KB
最終ジャッジ日時 2024-07-01 22:35:19
合計ジャッジ時間 2,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 17 ms
6,940 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 68 ms
8,064 KB
testcase_13 AC 47 ms
6,944 KB
testcase_14 AC 65 ms
7,808 KB
testcase_15 AC 68 ms
8,192 KB
testcase_16 AC 24 ms
6,940 KB
testcase_17 AC 58 ms
7,424 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 59 ms
7,424 KB
testcase_21 AC 33 ms
6,944 KB
testcase_22 AC 79 ms
8,832 KB
testcase_23 AC 81 ms
8,952 KB
testcase_24 AC 38 ms
6,944 KB
testcase_25 AC 56 ms
7,808 KB
testcase_26 AC 20 ms
6,940 KB
testcase_27 AC 66 ms
8,892 KB
testcase_28 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main(){
  int n;cin>>n;
  vector<int> B[n];
  for(int i = 0; n-1 > i; i++){
    int s,v;cin>>s>>v;
    B[--s].push_back(--v);
    B[v].push_back(s);
  }
  int ans = 0;
  for(int i = 0; n > i; i++){
    ans += max(0,(int)B[i].size()-2);
  }
  cout << ans << endl;
}
0