結果
問題 | No.1976 Cut then Connect |
ユーザー | milanis48663220 |
提出日時 | 2022-07-14 22:53:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,295 bytes |
コンパイル時間 | 1,423 ms |
コンパイル使用メモリ | 126,436 KB |
実行使用メモリ | 14,592 KB |
最終ジャッジ日時 | 2024-06-26 07:39:59 |
合計ジャッジ時間 | 4,560 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } vector<int> tree_diameter(vector<vector<int>> g){ int n = g.size(); vector<bool> used(n, false); vector<int> dist(n); auto clear = [&](){ for(int i = 0; i < n; i++) used[i] = false; }; auto dfs = [&](auto&& f, int v, int d) -> void{ used[v] = true; dist[v] = d; for(int to : g[v]){ if(!used[to]) f(f, to, d+1); } }; dfs(dfs, 0, 0); int s = 0; for(int i = 0; i < n; i++){ if(dist[s] < dist[i]) s = i; } clear(); dfs(dfs, s, 0); int t = 0; for(int i = 0; i < n; i++){ if(dist[t] < dist[i]) t = i; } int v = t; vector<int> path; path.push_back(t); while(v != s){ for(int to : g[v]){ if(dist[to] == dist[v]-1) { v = to; break; } } path.push_back(v); } return path; } void calc_depth(int v, int par, vector<vector<int>> &g, vector<int> &max_depth, int d){ max_depth[v] = d; for(int to: g[v]){ if(to == par) continue; calc_depth(to, v, g, max_depth, d+1); chmax(max_depth[v], max_depth[to]); } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<vector<int>> g(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); } auto diam = tree_diameter(g); int s = diam[0], t = diam.back(); vector<int> max_depth_s(n), max_depth_t(n); calc_depth(s, -1, g, max_depth_s, 0); calc_depth(t, -1, g, max_depth_t, 0); int r = diam.size()-1; vector<int> lr(r+1), rr(r+1); for(int i = 1; i < r; i++){ int u = diam[i]; lr[i] = max(lr[i-1], max_depth_s[u]); } for(int i = r-1; i > 0; i--){ int u = diam[i]; rr[i] = max(rr[i+1], max_depth_t[u]); } // print_vector(lr); // print_vector(rr); int ans = r; for(int i = 0; i < r; i++){ chmin(ans, (lr[i]+1)/2+(rr[i+1]+1)/2+1); } cout << ans << endl; }