結果

問題 No.1451 集団登校
ユーザー chocoruskchocorusk
提出日時 2021-03-31 22:42:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 1,757 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 193,012 KB
実行使用メモリ 15,928 KB
最終ジャッジ日時 2024-12-15 20:52:00
合計ジャッジ時間 6,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 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,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 232 ms
15,928 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 124 ms
9,688 KB
testcase_11 AC 117 ms
9,620 KB
testcase_12 AC 112 ms
9,416 KB
testcase_13 AC 159 ms
10,968 KB
testcase_14 AC 162 ms
10,456 KB
testcase_15 AC 92 ms
8,832 KB
testcase_16 AC 129 ms
10,064 KB
testcase_17 AC 44 ms
6,816 KB
testcase_18 AC 53 ms
7,936 KB
testcase_19 AC 71 ms
8,320 KB
testcase_20 AC 157 ms
10,400 KB
testcase_21 AC 27 ms
6,816 KB
testcase_22 AC 30 ms
6,912 KB
testcase_23 AC 9 ms
6,816 KB
testcase_24 AC 120 ms
9,600 KB
testcase_25 AC 80 ms
8,576 KB
testcase_26 AC 128 ms
10,112 KB
testcase_27 AC 94 ms
8,312 KB
testcase_28 AC 40 ms
7,292 KB
testcase_29 AC 83 ms
8,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n, m;
    cin>>n>>m;
    using mint=modint1000000007;
    vector<pair<mint, int>> v[100010];
    int par[100010];
    for(int i=0; i<n; i++) v[i].push_back(make_pair(mint(1), i)), par[i]=i;
    for(int i=0; i<m; i++){
        int a, b;
        cin>>a>>b;
        a--; b--;
        a=par[a], b=par[b];
        if(a==b) continue;
        if(v[a].size()>v[b].size()) swap(a, b);
        if(v[a].size()!=v[b].size()){
            while(!v[a].empty()){
                auto p=v[a].back();
                v[a].pop_back();
                v[b].push_back(make_pair(mint(0), p.second));
                par[p.second]=b;
            }
        }else{
            for(auto &p:v[b]) p.first/=mint(2);
            while(!v[a].empty()){
                auto p=v[a].back();
                v[a].pop_back();
                v[b].push_back(make_pair(p.first/mint(2), p.second));
                par[p.second]=b;
            }
        }
    }
    mint ans[100010];
    for(int i=0; i<n; i++){
        for(auto p:v[i]){
            ans[p.second]=p.first;
        }
    }
    for(int i=0; i<n; i++){
        cout<<ans[i].val()<<endl;
    }
    return 0;
}
0