結果

問題 No.1424 Ultrapalindrome
ユーザー nikkukunnikkukun
提出日時 2021-03-12 21:50:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,195 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 183,088 KB
実行使用メモリ 19,296 KB
最終ジャッジ日時 2024-10-14 12:11:29
合計ジャッジ時間 8,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,312 KB
testcase_01 AC 4 ms
8,192 KB
testcase_02 AC 4 ms
8,064 KB
testcase_03 AC 5 ms
8,192 KB
testcase_04 AC 4 ms
8,192 KB
testcase_05 AC 5 ms
8,192 KB
testcase_06 AC 4 ms
8,048 KB
testcase_07 AC 5 ms
8,168 KB
testcase_08 AC 5 ms
8,064 KB
testcase_09 AC 37 ms
11,640 KB
testcase_10 AC 35 ms
11,652 KB
testcase_11 AC 27 ms
10,448 KB
testcase_12 AC 39 ms
11,504 KB
testcase_13 AC 13 ms
9,212 KB
testcase_14 AC 27 ms
10,776 KB
testcase_15 AC 4 ms
8,280 KB
testcase_16 AC 23 ms
10,216 KB
testcase_17 AC 26 ms
10,652 KB
testcase_18 AC 125 ms
9,728 KB
testcase_19 AC 33 ms
10,240 KB
testcase_20 AC 11 ms
8,684 KB
testcase_21 AC 22 ms
9,856 KB
testcase_22 AC 15 ms
9,088 KB
testcase_23 AC 27 ms
8,516 KB
testcase_24 AC 10 ms
8,832 KB
testcase_25 AC 8 ms
8,448 KB
testcase_26 AC 31 ms
10,500 KB
testcase_27 TLE -
testcase_28 AC 34 ms
11,160 KB
testcase_29 AC 39 ms
11,520 KB
testcase_30 TLE -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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);

	vector<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_back(make_pair(i, 0));
			vst[i] = 1;
		}
	}

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

	while (!q.empty()) {
		vector<pint> nq;
		for (auto p: q) {
			for (auto v: a[p.fi]) {
				if (!vst[v] && v != p.se) {
					nq.push_back(make_pair(v, p.fi));
				}
			}
		}

		for (auto p: nq) {
			vst[p.fi]++;
		}
		q = nq;
	}

	map<int, int> cnt;
	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