結果

問題 No.1424 Ultrapalindrome
ユーザー shu8Creamshu8Cream
提出日時 2021-03-13 12:22:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 203,864 KB
実行使用メモリ 16,240 KB
最終ジャッジ日時 2024-04-23 05:15:46
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,472 KB
testcase_01 AC 3 ms
8,012 KB
testcase_02 AC 3 ms
8,212 KB
testcase_03 AC 3 ms
8,276 KB
testcase_04 AC 3 ms
8,284 KB
testcase_05 AC 3 ms
8,300 KB
testcase_06 AC 3 ms
8,344 KB
testcase_07 AC 3 ms
8,264 KB
testcase_08 AC 4 ms
8,128 KB
testcase_09 AC 26 ms
10,616 KB
testcase_10 AC 27 ms
10,760 KB
testcase_11 AC 20 ms
10,024 KB
testcase_12 AC 25 ms
10,660 KB
testcase_13 AC 10 ms
8,920 KB
testcase_14 AC 22 ms
10,040 KB
testcase_15 AC 3 ms
8,244 KB
testcase_16 AC 19 ms
9,712 KB
testcase_17 AC 21 ms
10,112 KB
testcase_18 AC 16 ms
9,768 KB
testcase_19 AC 24 ms
10,064 KB
testcase_20 AC 7 ms
8,716 KB
testcase_21 AC 19 ms
9,768 KB
testcase_22 AC 14 ms
9,228 KB
testcase_23 AC 6 ms
8,572 KB
testcase_24 AC 7 ms
8,572 KB
testcase_25 AC 7 ms
8,552 KB
testcase_26 AC 29 ms
10,416 KB
testcase_27 AC 32 ms
11,604 KB
testcase_28 AC 28 ms
11,444 KB
testcase_29 AC 33 ms
16,240 KB
testcase_30 AC 24 ms
11,700 KB
testcase_31 AC 27 ms
11,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
*    author:  shu8Cream
*    created: 13.03.2021 11:04:54
**/

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;

int n;
vi to[200005];
vi dist;

void dfs(int v, int p=-1){
    for(auto nv : to[v]){
        //if(dist[nv]!=-1) continue;
        if(nv == p) continue;
        dist[nv]=dist[v]+1;
        dfs(nv,v);
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin >> n;
    rep(i,n-1){
        int a,b;
        cin >> a >> b;
        a--; b--;
        to[a].push_back(b);
        to[b].push_back(a);
    }
    int cnt = 0, v = 0;
    rep(i,n){
        if(to[i].size()>=3){
            cnt++;
            v=i;
        }
    }
    if(cnt<1){
        cout << "Yes" << endl;
        return 0;
    }
    if(cnt>1){
        cout << "No" << endl;
        return 0;
    }
    dist.resize(n);
    dist[v]=0;
    dfs(v);
    set<int> s;
    rep(i,n){
        if(dist[i] && to[i].size()==1) s.insert(dist[i]);
    }
    if(s.size()==1) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0