結果

問題 No.1640 簡単な色塗り
ユーザー karinohitokarinohito
提出日時 2021-08-06 22:21:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,629 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 194,704 KB
実行使用メモリ 96,260 KB
最終ジャッジ日時 2024-06-29 15:26:49
合計ジャッジ時間 18,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,012 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 313 ms
96,260 KB
testcase_05 AC 309 ms
96,228 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 280 ms
57,728 KB
testcase_11 AC 220 ms
47,872 KB
testcase_12 AC 171 ms
42,752 KB
testcase_13 AC 437 ms
86,616 KB
testcase_14 AC 433 ms
85,820 KB
testcase_15 AC 120 ms
32,000 KB
testcase_16 AC 156 ms
38,272 KB
testcase_17 AC 340 ms
72,076 KB
testcase_18 AC 22 ms
9,728 KB
testcase_19 AC 184 ms
42,496 KB
testcase_20 AC 244 ms
56,064 KB
testcase_21 AC 198 ms
46,464 KB
testcase_22 AC 17 ms
7,936 KB
testcase_23 AC 270 ms
60,216 KB
testcase_24 AC 60 ms
19,200 KB
testcase_25 AC 189 ms
43,264 KB
testcase_26 AC 309 ms
66,008 KB
testcase_27 AC 116 ms
30,720 KB
testcase_28 AC 419 ms
82,256 KB
testcase_29 AC 301 ms
65,332 KB
testcase_30 AC 29 ms
17,024 KB
testcase_31 AC 242 ms
93,852 KB
testcase_32 AC 206 ms
82,124 KB
testcase_33 AC 128 ms
57,168 KB
testcase_34 AC 175 ms
70,244 KB
testcase_35 AC 132 ms
56,960 KB
testcase_36 AC 29 ms
17,024 KB
testcase_37 AC 41 ms
22,272 KB
testcase_38 AC 233 ms
85,684 KB
testcase_39 AC 92 ms
38,528 KB
testcase_40 AC 89 ms
39,424 KB
testcase_41 AC 174 ms
72,156 KB
testcase_42 AC 94 ms
44,672 KB
testcase_43 AC 105 ms
45,952 KB
testcase_44 AC 103 ms
45,056 KB
testcase_45 AC 82 ms
34,816 KB
testcase_46 AC 35 ms
18,560 KB
testcase_47 AC 23 ms
13,056 KB
testcase_48 AC 257 ms
87,288 KB
testcase_49 AC 9 ms
7,632 KB
testcase_50 TLE -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
07_evil_01.txt -- -
07_evil_02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <atcoder/all>
#include <bits/stdc++.h>
#include <cmath>
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;
Graph G;
vll E;
vector<bool> seen;

int main() {

	ll N;
	cin >> N;
	Graph G(N);
	vector<tuple<ll, ll, ll>> edge(N);
	vll E(N, 0);
	vector<multiset<ll>> SE(N);
	map<pair<ll, ll>, queue<ll>> M;
	rep(i, N) {
		ll A, B;
		cin >> A >> B;
		A--; B--;
		edge[i] = make_tuple(A, B, -1);
		M[make_pair(min(A, B), max(A, B))].push(i);
		SE[A].insert(B);
		SE[B].insert(A);
	}
	queue<ll> Q;
	rep(i, N) {
		if (SE[i].size() == 1) {
			Q.push(i);
		}
		else if (SE[i].size() == 0) {
			cout << "No" << endl;
			return 0;
		}
	}
	ll k = 0;
	ll j = 0;
	while (1) {
		while (!Q.empty()) {
			auto p = Q.front();
			Q.pop();
			ll n = *SE[p].begin();
			ll m = M[make_pair(min(p, n), max(p, n))].front();
			M[make_pair(min(p, n), max(p, n))].pop();
			edge[m] = make_tuple(p, n, p);
			k++;
			SE[p].erase(SE[p].find(n));
			SE[n].erase(SE[n].find(p));
			if (SE[n].size() == 1) {
				Q.push(n);
			}

		}
		if (k == N) {
			cout << "Yes" << endl;
			rep(i, N) {
				cout << 1+get<2>(edge[i]) << endl;
			}
			return 0;
		}
		while (SE[j].size() == 0) {
			j++;
		}
		ll p = j;
		ll n = *SE[p].begin();
		ll m = M[make_pair(min(p, n), max(p, n))].front();
		M[make_pair(min(p, n), max(p, n))].pop();
		edge[m] = make_tuple(p, n, p);
		k++;
		SE[p].erase(SE[p].find(n));
		SE[n].erase(SE[n].find(p));
		if (SE[n].size() == 1) {
			Q.push(n);
		}

	}
}
0