結果

問題 No.1640 簡単な色塗り
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-30 07:55:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 5,133 ms
コンパイル使用メモリ 316,128 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-06-10 08:24:07
合計ジャッジ時間 15,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 70 ms
7,680 KB
testcase_05 AC 76 ms
13,952 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 47 ms
8,064 KB
testcase_11 AC 38 ms
7,168 KB
testcase_12 AC 36 ms
6,912 KB
testcase_13 AC 72 ms
10,380 KB
testcase_14 AC 76 ms
10,240 KB
testcase_15 AC 25 ms
5,760 KB
testcase_16 AC 31 ms
6,400 KB
testcase_17 AC 61 ms
9,216 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 35 ms
6,656 KB
testcase_20 AC 47 ms
7,680 KB
testcase_21 AC 38 ms
7,040 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 50 ms
8,192 KB
testcase_24 AC 15 ms
5,376 KB
testcase_25 AC 35 ms
6,784 KB
testcase_26 AC 55 ms
8,704 KB
testcase_27 AC 24 ms
5,632 KB
testcase_28 AC 70 ms
10,112 KB
testcase_29 AC 55 ms
8,704 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 74 ms
12,800 KB
testcase_32 AC 66 ms
11,648 KB
testcase_33 AC 44 ms
8,832 KB
testcase_34 AC 58 ms
10,880 KB
testcase_35 AC 44 ms
8,832 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 16 ms
5,504 KB
testcase_38 AC 67 ms
11,392 KB
testcase_39 AC 30 ms
7,040 KB
testcase_40 AC 30 ms
6,784 KB
testcase_41 AC 57 ms
9,984 KB
testcase_42 AC 34 ms
7,040 KB
testcase_43 AC 36 ms
8,064 KB
testcase_44 AC 33 ms
7,424 KB
testcase_45 AC 28 ms
6,528 KB
testcase_46 AC 14 ms
5,376 KB
testcase_47 AC 8 ms
5,376 KB
testcase_48 AC 68 ms
12,032 KB
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 84 ms
12,288 KB
testcase_53 AC 84 ms
12,416 KB
07_evil_01.txt AC 181 ms
19,164 KB
07_evil_02.txt AC 303 ms
27,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<pp>v(n); rep(i,n)cin>>v[i].fi>>v[i].se; 
  rep(i,n)v[i].fi--,v[i].se--;
  vc vx(n,vc<pp>(0));
  dsu d(n);
  vc<bool>bo(n,false);
  rep(i,n){
    auto [a,b]=v[i];
    if(!d.same(a,b)){
      d.merge(a,b),bo[i]=true;
      vx[a].pb({b,i}); vx[b].pb({a,i});
    }
  }
  vc<int>ans(n,-1);
  auto f=[&](auto f,int a,int p)->void{
    for(auto [au,i]:vx[a])if(au!=p){
      ans[i]=au;
      f(f,au,a);
    }
    return;
  };
  vc<int>ok(n,0);
  rep(i,n)if(!bo[i]){
    auto [a,b]=v[i];
    if(ok[d.leader(a)])continue;
    ok[d.leader(a)]=1;
    ans[i]=a;
    f(f,a,-1);
  }
  
  rep(i,n)if(ans[i]==-1){
    cout<<"No";
    return 0;
  }
  cout<<"Yes"<<"\n";
  rep(i,n)cout<<ans[i]+1<<"\n";
}
  
0