結果

問題 No.1424 Ultrapalindrome
ユーザー ocvret_ocvret_
提出日時 2021-03-12 22:15:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,141 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 176,000 KB
実行使用メモリ 16,936 KB
最終ジャッジ日時 2024-10-14 12:45:14
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,660 KB
testcase_01 AC 5 ms
8,624 KB
testcase_02 AC 6 ms
8,852 KB
testcase_03 AC 5 ms
8,744 KB
testcase_04 AC 5 ms
8,728 KB
testcase_05 AC 4 ms
8,624 KB
testcase_06 AC 5 ms
8,780 KB
testcase_07 AC 6 ms
8,636 KB
testcase_08 WA -
testcase_09 AC 79 ms
11,836 KB
testcase_10 AC 82 ms
11,928 KB
testcase_11 AC 57 ms
10,960 KB
testcase_12 AC 75 ms
11,684 KB
testcase_13 AC 21 ms
9,476 KB
testcase_14 AC 59 ms
11,068 KB
testcase_15 AC 5 ms
8,696 KB
testcase_16 AC 47 ms
10,592 KB
testcase_17 AC 58 ms
10,936 KB
testcase_18 AC 38 ms
10,324 KB
testcase_19 AC 66 ms
10,884 KB
testcase_20 AC 17 ms
9,156 KB
testcase_21 AC 52 ms
10,496 KB
testcase_22 AC 32 ms
9,704 KB
testcase_23 AC 9 ms
9,020 KB
testcase_24 AC 15 ms
9,192 KB
testcase_25 AC 14 ms
9,188 KB
testcase_26 AC 87 ms
11,128 KB
testcase_27 WA -
testcase_28 AC 79 ms
16,884 KB
testcase_29 AC 78 ms
16,936 KB
testcase_30 AC 63 ms
13,460 KB
testcase_31 AC 72 ms
13,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
// #include<boost/multiprecision/cpp_int.hpp>

using namespace std;
// using namespace atcoder;
// using bint = boost::multiprecision::cpp_int;
using ll = long long;
using ull = unsigned long long;
using P = pair<int,int>;
#define rep(i,n) for(ll i = 0;i < (ll)n;i++)
#define ALL(x) (x).begin(),(x).end()
#define MOD 1000000007


vector<int> d;
void dfs(vector<vector<int>> &v,int ov){
  for(auto nv : v[ov]){
    if(d[nv] != -1)continue;
    d[nv] = d[ov] + 1;
    dfs(v,nv);
  }
}

int n;
vector<int> deg(200000);
vector<vector<int>> v(200000);

bool solve(int root){
  d.assign(n,-1);
  d[root] = 0;
  dfs(v,root);
  vector<int> w;
  rep(i,n)if(deg[i] == 1 && i != root)w.push_back(d[i]);
  sort(ALL(w));
  return w[0] == w.back();
}

int main(){
  
  cin >> n;
  rep(i,n-1){
    int a,b;cin >> a >> b;
    a--;b--;
    deg[a]++;deg[b]++;
    v[a].push_back(b);
    v[b].push_back(a);
  }
  int cnt = 0;
  rep(i,n){
    if(deg[i] == 1){
      if(!solve(i)){
        cout << "No\n";
        return 0;
      }else cnt++;
    }
    if(cnt == 2)break;
  }
  cout << "Yes\n";
  


  return 0;
}
0