結果
問題 | No.1451 集団登校 |
ユーザー | shiomusubi496 |
提出日時 | 2021-03-14 18:13:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 1,653 ms |
コンパイル使用メモリ | 171,132 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-11-06 07:42:17 |
合計ジャッジ時間 | 5,358 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
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 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr ll mod=1000000007; struct UnionFind{ int N; vector<int> par; vector<ll> ans; UnionFind(int n):N(n),par(n,-1),ans(n,1){} int find(int x){ return par[x]<0 ? x : par[x]=find(par[x]); } void unite(int x,int y){ x=find(x); y=find(y); if(x==y)return; if(par[x]>par[y]) swap(x,y); if(par[x]==par[y]){ for(int i=0;i<N;i++){ if(find(i)==x || find(i)==y) ans[i]=ans[i]*500000004%mod; } }else{ for(int i=0;i<N;i++){ if(find(i)==y) ans[i]=0; } } par[x]+=par[y]; par[y]=x; } int get(int x){ return ans[x]; } }; int main(){ int N,M; cin>>N>>M; UnionFind UF(N); for(int i=0;i<M;i++){ int A,B; cin>>A>>B; UF.unite(A-1, B-1); } for(int i=0;i<N;i++) cout<<UF.get(i)<<endl; }