結果
| 問題 |
No.1640 簡単な色塗り
|
| コンテスト | |
| ユーザー |
riano
|
| 提出日時 | 2021-08-06 21:52:06 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,323 bytes |
| コンパイル時間 | 1,540 ms |
| コンパイル使用メモリ | 180,356 KB |
| 実行使用メモリ | 10,368 KB |
| 最終ジャッジ日時 | 2024-06-29 15:01:55 |
| 合計ジャッジ時間 | 8,477 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 28 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define Pr pair<ll,ll>
#define Tp tuple<ll,ll,ll>
using Graph = vector<vector<int>>;
#define double long double
const ll mod = 1000000007;
//Unionfind
struct unionfind {
//自身が親であれば、その集合に属する頂点数に-1を掛けたもの
//そうでなければ親のid
vector<long long> r;
vector<bool> act;
unionfind(long long N) {
r = vector<long long>(N, -1);
act = vector<bool>(N,false);
}
long long root(long long x) {
if (r[x] < 0) return x;
return r[x] = root(r[x]);
}
bool unite(long long x, long long y) {
x = root(x);
y = root(y);
if (x == y) return false;
if (r[x] > r[y]) swap(x, y);
r[x] += r[y];
r[y] = x;
return true;
}
long long size(long long x) {
return max(-r[root(x)],0LL);
}
// 2つのデータx, yが属する木が同じならtrueを返す
bool same(long long x, long long y) {
long long rx = root(x);
long long ry = root(y);
if(rx==ry){
act[rx] = true;
}
return rx == ry;
}
bool activate(ll x){
long long rx = root(x);
return act[rx];
}
};
//main関数内で unionfind friends(N+1);
//などと宣言し friends.unite(a,b);
//のように使う
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
ll N; cin >> N;
ll a[N],b[N];
rep(i,N){
cin >> a[i] >> b[i];
}
unionfind balls(N+1);
rep(i,N){
if(!balls.same(a[i],b[i])){
balls.unite(a[i],b[i]);
}
}
rep(i,N){
if(!balls.activate(i+1)){
cout << "No" << endl; return 0;
}
}
cout << "Yes" << endl;
set<ll> col;
rep(i,N){
if(col.count(a[i])){
cout << b[i] << endl;
col.insert(b[i]);
}
cout << a[i] << endl;
col.insert(a[i]);
}
// unionfind tws(N+1);
// rep(i,N*(N-1)/2){
// ll a,b,c; cin >> a >> b >> c;
// if(tws.same(a,b)) continue;
// tws.unite(a,b);
// if(tws.size(a)==N){
// cout << c << endl; return 0;
// }
// }
//cout << ans << endl;
}
riano