結果

問題 No.1451 集団登校
ユーザー 👑 NachiaNachia
提出日時 2021-03-31 15:12:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,182 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 208,088 KB
実行使用メモリ 816,256 KB
最終ジャッジ日時 2024-05-08 17:27:17
合計ジャッジ時間 4,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 16 ms
5,504 KB
testcase_11 AC 13 ms
5,760 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

const ull M = 1000000007;
const ull inv2 = M/2+1;

struct DSU{
  vector<int> V;
  vector<int> Z;
  vector<ull> P;
  vector<ull> iP;
  DSU(int n=0){
    V.assign(n,-1);
    Z.assign(n,1);
    P.assign(n,1);
    iP.assign(n,1);
  }
  pair<int,ull> leader(int a){
    if(V[a]>=0){
      auto r=leader(V[a]);
      V[a]=r.first;
      P[a]=P[a]*r.second%M;
      return {V[a],P[a]};
    }
    return {a,1};
  }
  ull value(int a){
    auto ap = leader(a);
    return ap.second * P[ap.first] % M;
  }
  void merge(int u,int v){
    auto up = leader(u); u=up.first;
    auto vp = leader(v); v=vp.first;
    if(Z[u]<Z[v]) swap(u,v);
    if(Z[u]>Z[v]){
      P[v]=0; iP[v]=0;
      V[v]=u; Z[u]+=Z[v];
    }
    else{
      P[v]=P[v]*iP[u]%M; iP[v]=iP[v]*P[u]%M;
      P[u]=P[u]*inv2%M; iP[u]=iP[u]*2%M;
      V[v]=u; Z[u]+=Z[v];
    }
  }
};

int N,Q;
DSU dsu;

int main(){
  scanf("%d%d",&N,&Q);
  dsu = DSU(N);
  rep(i,Q){
    int u,v; scanf("%d%d",&u,&v); u--; v--;
    dsu.merge(u,v);
  }
  rep(i,N) printf("%llu\n",dsu.value(i));
  return 0;
}
0