結果

問題 No.1582 Vertexes vs Edges
ユーザー butsurizukibutsurizuki
提出日時 2021-06-18 23:04:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 8,531 ms
コンパイル使用メモリ 331,176 KB
実行使用メモリ 17,148 KB
最終ジャッジ日時 2024-06-29 04:40:08
合計ジャッジ時間 10,397 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 3 ms
5,376 KB
testcase_05 AC 47 ms
12,344 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 24 ms
8,044 KB
testcase_09 AC 45 ms
12,060 KB
testcase_10 AC 32 ms
10,168 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 20 ms
6,976 KB
testcase_13 AC 36 ms
10,372 KB
testcase_14 AC 36 ms
10,392 KB
testcase_15 AC 49 ms
11,328 KB
testcase_16 AC 24 ms
7,284 KB
testcase_17 AC 34 ms
10,204 KB
testcase_18 AC 59 ms
16,712 KB
testcase_19 AC 34 ms
10,448 KB
testcase_20 AC 31 ms
10,256 KB
testcase_21 AC 27 ms
8,084 KB
testcase_22 AC 51 ms
11,852 KB
testcase_23 AC 19 ms
6,980 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 27 ms
7,680 KB
testcase_26 AC 21 ms
7,064 KB
testcase_27 AC 48 ms
11,076 KB
testcase_28 AC 15 ms
5,940 KB
testcase_29 AC 42 ms
10,580 KB
testcase_30 AC 25 ms
7,472 KB
testcase_31 AC 41 ms
10,528 KB
testcase_32 AC 17 ms
6,944 KB
testcase_33 AC 65 ms
17,024 KB
testcase_34 AC 63 ms
17,148 KB
testcase_35 AC 65 ms
17,032 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 "testlib.h"
#include<bits/stdc++.h>

using namespace std;
using Graph=vector<vector<int>>;
using pi=pair<int,int>;

int cnt=0;
pi rep(int v,int pv,Graph &g){
  cnt++;
  pi res={0,0};
  for(auto &nx : g[v]){
    if(nx==pv){continue;}
    pi ch=rep(nx,v,g);
    res.first+=max(ch.first,ch.second);
    res.second+=ch.first;
  }
  res.second++;
  return res;
}

int main(int argc, char* argv[]){
  registerValidation(argc, argv);
  int n=inf.readInt(2,100000);inf.readEoln();
  Graph g(n);
  for(int i=1;i<n;i++){
    int u=inf.readInt(1,n);inf.readSpace();
    int v=inf.readInt(1,n);inf.readEoln();
    u--;v--;
    g[u].push_back(v);
    g[v].push_back(u);
  }
  pi res=rep(0,-1,g);
  ensuref(cnt==n,"The graph isn't connected");
  inf.readEof();
  cout << n-max(res.first,res.second) << '\n';
  return 0;
}
0