結果

問題 No.1582 Vertexes vs Edges
ユーザー shiomusubi496shiomusubi496
提出日時 2021-07-02 22:34:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 204,104 KB
実行使用メモリ 31,836 KB
最終ジャッジ日時 2024-06-29 12:25:57
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
28,076 KB
testcase_01 AC 8 ms
28,000 KB
testcase_02 AC 7 ms
28,004 KB
testcase_03 AC 7 ms
28,024 KB
testcase_04 AC 9 ms
27,996 KB
testcase_05 AC 61 ms
31,504 KB
testcase_06 AC 11 ms
28,200 KB
testcase_07 AC 15 ms
28,512 KB
testcase_08 AC 34 ms
29,764 KB
testcase_09 AC 59 ms
31,400 KB
testcase_10 AC 40 ms
29,972 KB
testcase_11 AC 11 ms
28,308 KB
testcase_12 AC 30 ms
29,468 KB
testcase_13 AC 43 ms
30,152 KB
testcase_14 AC 43 ms
30,216 KB
testcase_15 AC 56 ms
30,960 KB
testcase_16 AC 31 ms
29,332 KB
testcase_17 AC 40 ms
30,156 KB
testcase_18 AC 67 ms
31,544 KB
testcase_19 AC 44 ms
30,184 KB
testcase_20 AC 39 ms
29,896 KB
testcase_21 AC 35 ms
29,812 KB
testcase_22 AC 61 ms
31,256 KB
testcase_23 AC 26 ms
29,116 KB
testcase_24 AC 17 ms
28,580 KB
testcase_25 AC 36 ms
29,716 KB
testcase_26 AC 29 ms
29,192 KB
testcase_27 AC 55 ms
30,812 KB
testcase_28 AC 22 ms
28,880 KB
testcase_29 AC 48 ms
30,432 KB
testcase_30 AC 33 ms
29,460 KB
testcase_31 AC 49 ms
30,336 KB
testcase_32 AC 25 ms
29,300 KB
testcase_33 AC 71 ms
31,772 KB
testcase_34 AC 72 ms
31,836 KB
testcase_35 AC 72 ms
31,768 KB
testcase_36 AC 8 ms
28,104 KB
testcase_37 AC 8 ms
27,984 KB
testcase_38 AC 7 ms
28,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
int N;
vector<int> G[1<<20];
pair<int,int>dfs(int v,int p){
  pair<int,int> res{0,1};
  for(int t:G[v])if(t!=p){
    auto[a,b]=dfs(t,v);
    res.first+=b;
    res.second+=min(a,b);
  }
  return res;
}
signed main(){
  cin>>N;
  for(int i=0;i<N-1;i++){
    int a,b; cin>>a>>b;
    G[--a].push_back(--b);
    G[b].push_back(a);
  }
  auto[a,b]=dfs(0,-1);
  cout<<min(a,b)<<endl;
}
0