結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー KumaTachiRenKumaTachiRen
提出日時 2024-12-08 00:24:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,025 bytes
コンパイル時間 5,282 ms
コンパイル使用メモリ 312,708 KB
実行使用メモリ 13,772 KB
最終ジャッジ日時 2024-12-08 00:26:01
合計ジャッジ時間 79,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 TLE -
testcase_03 AC 235 ms
8,448 KB
testcase_04 AC 8 ms
10,024 KB
testcase_05 AC 46 ms
8,320 KB
testcase_06 TLE -
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 3 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 253 ms
10,496 KB
testcase_11 AC 826 ms
8,448 KB
testcase_12 AC 5 ms
10,496 KB
testcase_13 AC 189 ms
8,448 KB
testcase_14 AC 390 ms
10,496 KB
testcase_15 AC 820 ms
8,448 KB
testcase_16 AC 1,706 ms
10,496 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 258 ms
8,320 KB
testcase_20 AC 1,114 ms
10,496 KB
testcase_21 TLE -
testcase_22 AC 554 ms
10,496 KB
testcase_23 TLE -
testcase_24 AC 262 ms
10,496 KB
testcase_25 TLE -
testcase_26 AC 262 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 550 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 255 ms
5,248 KB
testcase_32 AC 1,096 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 236 ms
5,248 KB
testcase_35 AC 481 ms
5,248 KB
testcase_36 AC 1,027 ms
5,248 KB
testcase_37 AC 2,082 ms
5,248 KB
testcase_38 TLE -
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 1 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 AC 1 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 3 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 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,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
inline ostream &operator<<(ostream &os, const mint x)
{
    return os << x.val();
};
inline istream &operator>>(istream &is, mint &x)
{
    long long v;
    is >> v;
    x = v;
    return is;
};

struct Fast
{
    Fast()
    {
        std::cin.tie(nullptr);
        ios::sync_with_stdio(false);
        cout << setprecision(10);
    }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b) - 1; i >= (a); i--)
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return true;
    }
    return false;
}
template <class T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return true;
    }
    return false;
}

using ll = long long;
using vb = vector<bool>;
using vvb = vector<vb>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;

template <typename T1, typename T2>
ostream &operator<<(ostream &os, pair<T1, T2> &p)
{
    os << "(" << p.first << "," << p.second << ")";
    return os;
}

template <typename T>
ostream &operator<<(ostream &os, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
    {
        os << vec[i] << (i + 1 == (int)vec.size() ? "" : " ");
    }
    return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &vec)
{
    for (int i = 0; i < (int)vec.size(); i++)
        is >> vec[i];
    return is;
}

ll floor(ll a, ll b) { return a >= 0 ? a / b : (a + 1) / b - 1; }
ll ceil(ll a, ll b) { return a > 0 ? (a - 1) / b + 1 : a / b; }

struct dsu_
{
public:
    dsu_() : _n(0) {}
    explicit dsu_(int n) : _n(n), parent_or_size(n, -1) {}

    void clear()
    {
        fill(all(parent_or_size), -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);
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        return x;
    }

    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)];
    }

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

void solve()
{
    int h, w, m;
    ll k;
    cin >> h >> w >> k >> m;

    using mint = dynamic_modint<0>;
    mint::set_mod(m);

    vi cnt(h * w + 1, 0);
    dsu_ uf(h * w);
    for (int bit = 0; bit < (1 << (h * w)); bit++)
    {
        uf.clear();
        for (int i = 0; i < h; i++)
            for (int j = 0; j + 1 < w; j++)
                if (((bit >> (w * i + j)) & 1) & ((bit >> (w * i + j + 1)) & 1))
                    uf.merge(w * i + j, w * i + j + 1);
        for (int i = 0; i + 1 < h; i++)
            for (int j = 0; j < w; j++)
                if (((bit >> (w * i + j)) & 1) & ((bit >> (w * i + j + w)) & 1))
                    uf.merge(w * i + j, w * i + j + w);
        for (int i = 0; i < h * w; i++)
            if (((bit >> i) & 1) == 1 && uf.leader(i) == i) cnt[uf.size(i)]++;
    }

    mint ans = 0;
    rep(i, 0, h * w + 1) ans += mint(i).pow(k) * cnt[i];
    mint p = 0;
    rep(i, 1, h * w + 1) p += mint(i).inv();
    ans *= p;
    ans *= mint(2).inv().pow(h * w);
    cout << ans.val() << "\n";
}

int main()
{
    int t = 1;
    // cin >> t;
    while (t--)
        solve();
}
0