結果
問題 | No.277 根掘り葉掘り |
ユーザー | ooaiu |
提出日時 | 2024-12-06 22:33:28 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,360 bytes |
コンパイル時間 | 3,265 ms |
コンパイル使用メモリ | 250,940 KB |
実行使用メモリ | 14,464 KB |
最終ジャッジ日時 | 2024-12-06 22:33:34 |
合計ジャッジ時間 | 5,999 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 62 ms
14,464 KB |
testcase_10 | AC | 46 ms
9,744 KB |
testcase_11 | WA | - |
testcase_12 | AC | 60 ms
11,904 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#ifndef LOCAL #include <bits/stdc++.h> using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif namespace std { template <class Fun> class y_combinator_result { Fun fun_; public: template <class T> explicit y_combinator_result(T &&fun) : fun_(std::forward<T>(fun)) {} template <class... Args> decltype(auto) operator()(Args &&...args) { return fun_(std::ref(*this), std::forward<Args>(args)...); } }; template <class Fun> decltype(auto) y_combinator(Fun &&fun) { return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun)); } } // namespace std void solve() { int N; cin >> N; vector<vector<int>> G(N); for (int i = 1; i < N; i++) { int a, b; cin >> a >> b; a--, b--; G[a].push_back(b); G[b].push_back(a); } vector<int> L(N); vector<int> R(N); y_combinator([&](auto self, int v, int p = -1) -> void { L[v] = 0; for(const auto&to: G[v]) if(to != p) { R[to] = R[v] + 1; self(to, v); L[v] = L[to] + 1; } })(0); for(int i = 0; i < N; i++) cout << min(R[i], L[i]) << "\n"; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }