結果

問題 No.1424 Ultrapalindrome
ユーザー milanis48663220milanis48663220
提出日時 2021-03-12 21:37:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,616 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 103,364 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-10-14 16:09:20
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 32 ms
8,396 KB
testcase_10 AC 34 ms
8,448 KB
testcase_11 AC 23 ms
7,548 KB
testcase_12 AC 32 ms
8,132 KB
testcase_13 AC 10 ms
6,820 KB
testcase_14 AC 26 ms
7,712 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 19 ms
7,552 KB
testcase_17 AC 22 ms
7,704 KB
testcase_18 AC 17 ms
7,296 KB
testcase_19 AC 27 ms
7,884 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 25 ms
7,532 KB
testcase_22 AC 15 ms
6,912 KB
testcase_23 AC 6 ms
6,820 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 7 ms
6,816 KB
testcase_26 AC 34 ms
8,416 KB
testcase_27 AC 40 ms
9,216 KB
testcase_28 AC 32 ms
8,960 KB
testcase_29 AC 38 ms
14,080 KB
testcase_30 AC 26 ms
10,008 KB
testcase_31 AC 31 ms
9,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#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;

vector<int> g[100000];
int depth[100000];
bool used[100000];

void dfs(int v, int d){
    used[v] = true;
    depth[v] = d;
    for(int to : g[v]){
        if(!used[to]) dfs(to, d+1);
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<int> deg(n);
    for(int i = 0; i < n-1; i++){
        int a, b; cin >> a >> b;
        a--; b--;
        deg[a]++;
        deg[b]++;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    int cnt = 0;
    for(int i = 0; i < n; i++){
        if(deg[i] >= 3) cnt++;
    }
    if(cnt > 1){
        cout << "No" << endl;
        return 0;
    }else if(cnt == 0){
        cout << "Yes" << endl;
        return 0;
    }
    for(int i = 0; i < n; i++){
        if(deg[i] >= 3) dfs(i, 0);
    }
    set<int> st;
    for(int i = 0; i < n; i++){
        if(deg[i] == 1){
            st.insert(depth[i]);
        }
    }
    if(st.size() == 1){
        cout << "Yes" << endl;
    }else{
        cout << "No" << endl;
    }
}
0