結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー t98slidert98slider
提出日時 2024-12-08 01:37:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,922 bytes
コンパイル時間 5,447 ms
コンパイル使用メモリ 265,240 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-08 01:38:18
合計ジャッジ時間 75,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 TLE -
testcase_03 AC 165 ms
8,448 KB
testcase_04 AC 6 ms
10,496 KB
testcase_05 AC 42 ms
8,448 KB
testcase_06 TLE -
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 242 ms
10,496 KB
testcase_11 AC 770 ms
8,576 KB
testcase_12 AC 4 ms
10,496 KB
testcase_13 AC 175 ms
8,320 KB
testcase_14 AC 360 ms
10,496 KB
testcase_15 AC 751 ms
8,448 KB
testcase_16 AC 1,562 ms
10,496 KB
testcase_17 AC 3,280 ms
6,824 KB
testcase_18 TLE -
testcase_19 AC 245 ms
6,820 KB
testcase_20 AC 1,021 ms
6,820 KB
testcase_21 TLE -
testcase_22 AC 513 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 255 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 252 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 501 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 223 ms
5,248 KB
testcase_32 AC 956 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 166 ms
5,248 KB
testcase_35 AC 343 ms
5,248 KB
testcase_36 AC 697 ms
5,248 KB
testcase_37 AC 1,495 ms
5,248 KB
testcase_38 AC 3,109 ms
5,248 KB
testcase_39 TLE -
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 1 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 2 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using mint = atcoder::modint;

struct dsu {
    public:
    int csz;
    dsu() : _n(0) {}
    dsu(int n) : _n(n), csz(n), parent_or_size(n, -1) {}

    int merge(int a, int b) {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        int x = leader(a), y = leader(b);
        if (x == y) return x;
        if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y);
        csz--;
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        return x;
    }

    bool same(int a, int b) {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        return leader(a) == leader(b);
    }

    int leader(int a) {
        assert(0 <= a && a < _n);
        if (parent_or_size[a] < 0) return a;
        return parent_or_size[a] = leader(parent_or_size[a]);
    }

    int size(int a) {
        assert(0 <= a && a < _n);
        return -parent_or_size[leader(a)];
    }

    std::vector<std::vector<int>> groups() {
        std::vector<int> leader_buf(_n), group_size(_n);
        for (int i = 0; i < _n; i++) {
            leader_buf[i] = leader(i);
            group_size[leader_buf[i]]++;
        }
        std::vector<std::vector<int>> result(_n);
        for (int i = 0; i < _n; i++) {
            result[i].reserve(group_size[i]);
        }
        for (int i = 0; i < _n; i++) {
            result[leader_buf[i]].push_back(i);
        }
        result.erase(
            std::remove_if(result.begin(), result.end(),
                           [&](const std::vector<int>& v) { return v.empty(); }),
            result.end());
        return result;
    }

    int _n;
    // root node: -1 * component size
    // otherwise: parent
    std::vector<int> parent_or_size;
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    ll k;
    int m;
    cin >> h >> w >> k >> m;
    mint::set_mod(m);
    vector<mint> tb(26);
    mint div;
    const int r = h * w;
    for(int i = 1; i <= 25; i++) tb[i] = mint(i).pow(k); 
    for(int i = 1; i <= h * w; i++) div += mint(1) / i;
    dsu uf(h * w);
    auto f = [&](int S){
        auto &&tmp = uf.parent_or_size;
        fill(tmp.begin(), tmp.end(), -1);
        int T = S;
        while(T){
            int b = T & -T;
            T -= b;
            b = __lg(b);
            int y = b / w, x = b - y * w;
            if(x + 1 < w && (T >> (b + 1) & 1)) uf.merge(b, b + 1);
            if(y + 1 < h && (T >> (b + w) & 1)) uf.merge(b, b + w);
        }
        mint res;
        while(S){
            int b = S & -S;
            S -= b;
            b = __lg(b);
            if (uf.leader(b) == b) res += tb[uf.size(b)];
        }
        return res;
    };
    mint ans;
    for(int S = 1; S < (1 << (h * w)); S++) ans += f(S);
    ans *= div;
    ans /= 1 << h * w;
    cout << ans.val() << '\n';
}
0