結果

問題 No.1451 集団登校
ユーザー KudeKude
提出日時 2021-03-31 15:36:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,310 bytes
コンパイル時間 4,801 ms
コンパイル使用メモリ 266,376 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-08 18:19:44
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 28 ms
9,472 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
8,192 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 18 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 18 ms
6,912 KB
testcase_20 AC 41 ms
8,448 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 29 ms
5,760 KB
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 22 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
using mint = modint1000000007;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    VVI alives(n);
    rep(i, n) alives[i].push_back(i);
    dsu d(n);
    rep(_, m) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        int la = d.leader(a), lb = d.leader(b);
        if (la == lb) continue;
        int sza = d.size(la), szb = d.size(lb);
        int lc = d.merge(la, lb);
        if (sza == szb) {
            // la <- lb
            for(int x: alives[lb]) alives[la].push_back(x);
        }
    }
    vector<mint> ans(n);
    rep(i, n) if (d.leader(i) == i) {
        mint p = 1 / mint::raw(alives[i].size());
        for(int x: alives[i]) ans[x] = p;
    }
    rep(i, n) cout << ans[i].val() << '\n';
}
0