結果
問題 | No.806 木を道に |
ユーザー | tonegawa |
提出日時 | 2020-08-16 15:40:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,038 bytes |
コンパイル時間 | 1,352 ms |
コンパイル使用メモリ | 121,980 KB |
実行使用メモリ | 35,456 KB |
最終ジャッジ日時 | 2024-10-11 10:30:18 |
合計ジャッジ時間 | 3,709 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
26,624 KB |
testcase_01 | AC | 21 ms
26,624 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 21 ms
26,624 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 13 ms
26,624 KB |
testcase_08 | AC | 14 ms
26,624 KB |
testcase_09 | AC | 14 ms
26,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 52 ms
32,384 KB |
testcase_25 | AC | 72 ms
35,456 KB |
testcase_26 | AC | 31 ms
27,776 KB |
testcase_27 | AC | 75 ms
30,432 KB |
testcase_28 | AC | 14 ms
26,712 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <deque> #include <algorithm> #include <set> #include <map> #include <bitset> #include <cmath> #include <functional> #include <iomanip> #define vll vector<ll> #define vvvl vector<vvl> #define vvl vector<vector<ll>> #define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c)) #define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d))); #define re(c, b) for(ll c=0;c<b;c++) #define rep(a,b,c) for(ll a=b;a<c;a++) #define all(obj) (obj).begin(), (obj).end() typedef long long int ll; typedef long double ld; using namespace std; void get(vll &a){re(i,a.size()) scanf("%lld",&a[i]);} void get(vvl &a){re(i,a.size()) re(j,a[0].size()) scanf("%lld",&a[i][j]);} void print(vll &a){re(i,a.size()) cout<<a[i]<<(i==a.size()-1?"\n":" ");} void print(vvl &a){re(i,a.size()) re(j,a[0].size())cout<<a[i][j]<<(j==a[0].size()-1?"\n":" ");} //_____________________________________________________________ const int MAX_NODE=1000000; vvl G = VV(MAX_NODE, 0, 0, ll); void dfs(int from, int now){ //std::cout << now << '\n'; for(int i=0;i<G[now].size();i++) { if(from == G[now][i]) continue; dfs(now, G[now][i]); } } void treeDFS(int from, int current, int dist, int &maxDist, int &maxVertex) { if (dist > maxDist) maxDist = dist, maxVertex = current; for (auto to : G[current]) { if (to == from) continue; treeDFS(current, to, dist + 1, maxDist, maxVertex); } } int getTreeDiameter(int s) { int start = s, end = 0, maxDist = 0; treeDFS(-1, start, 0, maxDist, end); start = end, end = 0, maxDist = 0; treeDFS(-1, start, 0, maxDist, end); //printf("start: %d, end: %d, diameter: %d\n", start, end, maxDist); return maxDist; } //_____________________________________________________________ int main(int argc, char const *argv[]) { ll n;std::cin >> n; re(i, n-1){ ll a, b;std::cin >> a >> b; G[a].push_back(b); G[b].push_back(a); } cout << n - 1 - getTreeDiameter(1) << "\n"; return 0; }