結果

問題 No.1424 Ultrapalindrome
ユーザー GRMNGRMN
提出日時 2021-05-02 22:02:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 5,335 ms
コンパイル使用メモリ 270,072 KB
実行使用メモリ 10,616 KB
最終ジャッジ日時 2024-07-21 07:20:11
合計ジャッジ時間 6,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 56 ms
8,448 KB
testcase_10 AC 60 ms
8,448 KB
testcase_11 AC 40 ms
6,912 KB
testcase_12 AC 54 ms
8,192 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 45 ms
7,296 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 36 ms
6,400 KB
testcase_17 AC 41 ms
7,040 KB
testcase_18 AC 27 ms
5,888 KB
testcase_19 AC 40 ms
7,040 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 32 ms
6,272 KB
testcase_22 AC 20 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 9 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 48 ms
7,808 KB
testcase_27 AC 69 ms
10,240 KB
testcase_28 AC 61 ms
8,704 KB
testcase_29 AC 63 ms
9,984 KB
testcase_30 AC 52 ms
10,616 KB
testcase_31 AC 63 ms
10,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:69:33: warning: 'id' may be used uninitialized [-Wmaybe-uninitialized]
   69 |             if(vec[i]&&vec1[u]>1&&u!=id)ok=false;
main.cpp:33:15: note: 'id' was declared here
   33 |     int tmp=0,id;
      |               ^~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i,n) for (int i = 0; i < (n); i++)
#define REP(i,a,b) for(int i=(a);i<(b);i++)
#define all(v) begin(v),end(v)
#define rall(v) rbegin(v),rend(v)
#define fi first
#define se second
#define re0 return 0
template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
constexpr ll inf = 2e9;
constexpr ll llinf = 9e18;
//constexpr ll MOD = 998244353;
constexpr ll MOD = 1000000007;
const double pai=acos(-1);

int main() {
    //cout<<fixed<<setprecision(15);
    int n;cin>>n;
    vector<vector<int>> g(n);
    rep(i,n-1){
        int a,b;cin>>a>>b;
        a--;b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    int tmp=0,id;
    rep(i,n){
        int a=g[i].size();
        if(a>tmp){
            tmp=a;
            id=i;
        }
    }
    if(tmp==1||tmp==2){
        cout<<"Yes"<<endl;
        re0;
    }
    //cout<<id<<endl;
    vector<int> vec(n),vec1(n);
    vector<int> d(n,-1);
    queue<int> que;
    d[id]=0;
    que.push(id);
    while(!que.empty()){
        int v=que.front();que.pop();
        for(auto u:g[v]){
            if(d[u]!=-1)continue;
            d[u]=d[v]+1;
            que.push(u);
            if(g[u].size()==1)vec[u]=1,vec1[v]++;
        }
    }
    //rep(i,n)cout<<d[i]<<endl;
    set<int> st;
    rep(i,n){
        if(vec[i])st.insert(d[i]);
    }
    bool ok=true;
    if(st.size()!=1)ok=false;
    rep(i,n){
        for(auto u:g[i]){
            if(vec[i]&&vec1[u]>1&&u!=id)ok=false;
        }
    }
    if(ok)cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
}
0