結果
問題 | No.1424 Ultrapalindrome |
ユーザー | Example0911 |
提出日時 | 2021-03-12 22:00:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 816 bytes |
コンパイル時間 | 2,227 ms |
コンパイル使用メモリ | 209,836 KB |
実行使用メモリ | 15,972 KB |
最終ジャッジ日時 | 2024-10-14 12:25:20 |
合計ジャッジ時間 | 6,179 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,632 KB |
testcase_01 | WA | - |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include "bits/stdc++.h" #define int long long using namespace std; using ll = long long; using P = pair<ll, ll>; const ll INF = (1LL << 61); ll mod = 1000000007; int N; vector<int>G[100010]; int depth[100010]; void dfs(int v, int p, int d) { depth[v] = d; for (auto nv : G[v]) { if (nv == p)continue; dfs(nv, v, d + 1); } } signed main() { ios::sync_with_stdio(false); cin.tie(0); cin >> N; for (int i = 0; i < N - 1; i++) { int a, b; cin >> a >> b; a--; b--; G[a].push_back(b); G[b].push_back(a); } for (int i = 0; i < N; i++) { if (G[i].size() == 1) { dfs(i, -1, 0); set<int>st; for (int j = 0; j < N; j++) { if (G[j].size() == 1) { st.insert(depth[j]); } } if (st.size() <= 2) { cout << "Yes" << endl; return 0; } } } cout << "No" << endl; return 0; }