結果

問題 No.1640 簡単な色塗り
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-30 07:55:20
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 6,731 ms
コンパイル使用メモリ 315,572 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-31 22:34:12
合計ジャッジ時間 17,804 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 75 ms
7,552 KB
testcase_05 AC 86 ms
13,952 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 55 ms
8,064 KB
testcase_11 AC 46 ms
7,168 KB
testcase_12 AC 42 ms
6,820 KB
testcase_13 AC 87 ms
10,496 KB
testcase_14 AC 84 ms
10,368 KB
testcase_15 AC 30 ms
6,816 KB
testcase_16 AC 37 ms
6,820 KB
testcase_17 AC 72 ms
9,216 KB
testcase_18 AC 7 ms
6,820 KB
testcase_19 AC 40 ms
6,816 KB
testcase_20 AC 54 ms
7,808 KB
testcase_21 AC 46 ms
6,912 KB
testcase_22 AC 6 ms
6,816 KB
testcase_23 AC 58 ms
8,064 KB
testcase_24 AC 18 ms
6,816 KB
testcase_25 AC 42 ms
6,820 KB
testcase_26 AC 65 ms
8,704 KB
testcase_27 AC 29 ms
6,816 KB
testcase_28 AC 87 ms
9,984 KB
testcase_29 AC 65 ms
8,704 KB
testcase_30 AC 14 ms
6,820 KB
testcase_31 AC 89 ms
12,800 KB
testcase_32 AC 77 ms
11,776 KB
testcase_33 AC 51 ms
8,704 KB
testcase_34 AC 67 ms
10,752 KB
testcase_35 AC 50 ms
8,960 KB
testcase_36 AC 14 ms
6,816 KB
testcase_37 AC 18 ms
6,820 KB
testcase_38 AC 79 ms
11,392 KB
testcase_39 AC 34 ms
7,040 KB
testcase_40 AC 34 ms
6,816 KB
testcase_41 AC 65 ms
9,856 KB
testcase_42 AC 38 ms
7,040 KB
testcase_43 AC 41 ms
8,064 KB
testcase_44 AC 40 ms
7,552 KB
testcase_45 AC 30 ms
6,820 KB
testcase_46 AC 14 ms
6,820 KB
testcase_47 AC 10 ms
6,820 KB
testcase_48 AC 79 ms
12,032 KB
testcase_49 AC 5 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,820 KB
testcase_52 AC 98 ms
12,416 KB
testcase_53 AC 100 ms
12,416 KB
07_evil_01.txt AC 229 ms
19,272 KB
07_evil_02.txt AC 381 ms
27,096 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