結果

問題 No.1424 Ultrapalindrome
ユーザー e869120e869120
提出日時 2021-03-12 21:38:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 90,784 KB
実行使用メモリ 16,952 KB
最終ジャッジ日時 2024-10-14 16:09:36
合計ジャッジ時間 2,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;

int N;
int A[1 << 18], B[1 << 18];
int depth[1 << 18];
vector<int> X[1 << 18];

void dfs(int pos, int dep) {
	depth[pos] = dep;
	for (int i : X[pos]) {
		if (depth[i] != -1) continue;
		dfs(i, dep + 1);
	}
}

int main() {
	// Step #1. 入力
	cin >> N;
	for (int i = 1; i <= N - 1; i++) cin >> A[i] >> B[i];
	for (int i = 1; i <= N - 1; i++) X[A[i]].push_back(B[i]);
	for (int i = 1; i <= N - 1; i++) X[B[i]].push_back(A[i]);

	// Step #2. 前処理
	int idx = -1, cnt = 0;
	for (int i = 1; i <= N; i++) {
		if (X[i].size() >= 3) { idx = i; cnt++; }
	}
	if (cnt >= 2) {
		cout << "No" << endl;
		return 0;
	}
	if (cnt == 0) {
		cout << "Yes" << endl;
		return 0;
	}

	// Step #3. 深さ優先探索
	for (int i = 1; i <= N; i++) depth[i] = -1;
	dfs(idx, 0);

	// Step #4. 判定
	vector<int> vec;
	for (int i = 1; i <= N; i++) {
		if (X[i].size() == 1) vec.push_back(depth[i]);
	}
	sort(vec.begin(), vec.end());
	vec.erase(unique(vec.begin(), vec.end()), vec.end());

	// Step #5. 出力
	if (vec.size() == 1) {
		cout << "Yes" << endl;
	}
	else {
		cout << "No" << endl;
	}
	return 0;
}
0