結果

問題 No.1424 Ultrapalindrome
ユーザー msm1993msm1993
提出日時 2021-03-23 15:28:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 184,368 KB
実行使用メモリ 13,820 KB
最終ジャッジ日時 2024-11-25 07:16:01
合計ジャッジ時間 3,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,128 KB
testcase_01 AC 4 ms
8,600 KB
testcase_02 AC 4 ms
9,268 KB
testcase_03 AC 3 ms
9,024 KB
testcase_04 AC 3 ms
8,108 KB
testcase_05 AC 4 ms
9,484 KB
testcase_06 AC 3 ms
8,048 KB
testcase_07 AC 2 ms
8,272 KB
testcase_08 AC 3 ms
8,476 KB
testcase_09 AC 32 ms
12,788 KB
testcase_10 AC 31 ms
11,856 KB
testcase_11 AC 22 ms
10,824 KB
testcase_12 AC 28 ms
11,376 KB
testcase_13 AC 10 ms
9,428 KB
testcase_14 AC 25 ms
10,704 KB
testcase_15 AC 4 ms
8,588 KB
testcase_16 AC 19 ms
10,132 KB
testcase_17 AC 24 ms
10,740 KB
testcase_18 AC 16 ms
9,856 KB
testcase_19 AC 24 ms
10,272 KB
testcase_20 AC 8 ms
8,544 KB
testcase_21 AC 19 ms
9,820 KB
testcase_22 AC 13 ms
9,600 KB
testcase_23 AC 5 ms
8,988 KB
testcase_24 AC 7 ms
8,752 KB
testcase_25 AC 7 ms
9,364 KB
testcase_26 AC 27 ms
10,568 KB
testcase_27 AC 38 ms
13,348 KB
testcase_28 AC 30 ms
12,100 KB
testcase_29 AC 38 ms
11,920 KB
testcase_30 AC 27 ms
13,496 KB
testcase_31 AC 30 ms
13,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
#include <bits/stdc++.h>
using namespace std;

#define fi first
#define se second
#define all(x) x.begin(), x.end()
#define lch (o << 1)
#define rch (o << 1 | 1)

typedef double db;
typedef long long ll;
typedef unsigned int ui;
typedef pair<int, int> pint;
typedef tuple<int, int, int> tint;

const int N = 2e5 + 5;
const int INF = 0x3f3f3f3f;
const ll INF_LL = 0x3f3f3f3f3f3f3f3f;

int vst[N];
vector<int> a[N];

int main() {
	ios::sync_with_stdio(0);

	queue<pint> q;
	int n;
	cin >> n;
	for (int i = 1; i < n; i++) {
		int u, v;
		cin >> u >> v;
		a[u].push_back(v);
		a[v].push_back(u);
	}

	for (int i = 1; i <= n; i++) {
		if (a[i].size() == 1) {
			q.push(make_pair(i, 0));
			vst[i] = 1;
		}
	}

	int siz = q.size();
	if (siz == 2) {
		cout << "Yes" << endl;
		return 0;
	}

	while (!q.empty()) {
		queue<pint> nq;
		while (!q.empty()) {
			pint p = q.front();
			q.pop();
			if (vst[p.fi] > 1) continue;
			for (auto v: a[p.fi]) {
				if (!vst[v] && v != p.se) {
					nq.push(make_pair(v, p.fi));
				}
			}
		}
		q = nq;
		while (!nq.empty()) {
			pint p = nq.front();
			nq.pop();
			vst[p.fi]++;
		}
	}

	static int cnt[N];
	for (int i = 1; i <= n; i++)
		cnt[vst[i]]++;
	bool flag = (cnt[1] == n - 1) && (cnt[siz] == 1);
	cout << (flag ? "Yes" : "No") << endl;

	return 0;
}
0