結果

問題 No.1451 集団登校
ユーザー ytqm3ytqm3
提出日時 2022-03-18 21:36:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,168 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 207,736 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-10-03 06:22:43
合計ジャッジ時間 6,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 121 ms
11,648 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 128 ms
9,856 KB
testcase_11 AC 124 ms
9,984 KB
testcase_12 AC 119 ms
9,088 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 73 ms
7,296 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 132 ms
9,728 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef uint64_t u64;
typedef int64_t i64;
using namespace std;

template<u64 mod> struct modint{
  u64 val;
  modint(i64 val_=0):val((val_%i64(mod)+i64(mod))%i64(mod)){}
  modint operator-(){
    return (val==0)?0:mod-val;
  }
  modint operator+(modint rhs){
    return modint(*this)+=rhs;
  }
  modint operator-(modint rhs){
    return modint(*this)-=rhs;
  }
  modint operator*(modint rhs){
    return modint(*this)*=rhs;
  }
  modint operator/(modint rhs){
    return modint(*this)/=rhs;
  }
  modint pow(i64 rhs){
    modint res=1,now=(*this);
    while(rhs){
      res*=((rhs&1)?now:1),now*=now,rhs>>=1;
    }
    return res;
  }
  modint &operator+=(modint rhs){
    val+=rhs.val,val-=((val>=mod)?mod:0);
    return (*this);
  }
  modint &operator-=(modint rhs){
    val+=((val<rhs.val)?mod:0),val-=rhs.val;
    return (*this);
  }
  modint &operator*=(modint rhs){
    val=val*rhs.val%mod;
    return (*this);
  }
  modint &operator/=(modint rhs){
    return (*this)*=rhs.pow(mod-2);
  }
  bool operator==(modint rhs){
    return val==rhs.val;
  }
  bool operator!=(modint rhs){
    return val!=rhs.val;
  }
  friend std::ostream &operator<<(std::ostream& os,modint x){
    return os<<(x.val);
  }
  friend std::istream &operator>>(std::istream& is,modint& x){
    u64 t;
    is>>t,x=t;
    return is;
  }
};

int main(){
  constexpr u64 mod=1000000007;
  typedef modint<mod> mint;
  mint hf=(mod+1)/2;
  int N,M;
  cin>>N>>M;
  vector<int> root(N),siz(N,1);
  vector<mint> prob(N,1);
  vector<vector<int>> par(N);
  for(int i=0;i<N;++i){
    root[i]=i;
    par[i].emplace_back(i);
  }
  for(int i=0;i<M;++i){
    int a,b;
    cin>>a>>b;
    a--,b--;
    a=root[a],b=root[b];
    if(siz[a]<siz[b]){
      swap(a,b);
    }
    if(siz[a]>siz[b]){
      siz[a]=siz[a]+siz[b];
      for(auto v:par[b]){
        root[v]=a;
        prob[v]=0;
        par[a].emplace_back(v);
      }
    }
    else{
      siz[a]=siz[a]+siz[b];
      for(auto v:par[a]){
        prob[v]*=hf;
      }
      for(auto v:par[b]){
        root[v]=a;
        prob[v]*=hf;
        par[a].emplace_back(v);
      }
    }
  }
  for(auto v:prob){
    cout<<v<<endl;
  }
}
0