結果

問題 No.2531 Coloring Vertices on Namori
ユーザー hitonanodehitonanode
提出日時 2023-11-03 22:28:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 1,250 ms
コンパイル使用メモリ 111,872 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-09-25 20:53:40
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 69 ms
20,184 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 69 ms
20,096 KB
testcase_08 AC 105 ms
20,224 KB
testcase_09 AC 103 ms
20,096 KB
testcase_10 AC 100 ms
20,176 KB
testcase_11 AC 50 ms
15,556 KB
testcase_12 AC 50 ms
15,692 KB
testcase_13 AC 50 ms
15,684 KB
testcase_14 AC 84 ms
20,096 KB
testcase_15 AC 96 ms
20,024 KB
testcase_16 AC 101 ms
20,144 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 96 ms
14,964 KB
testcase_21 AC 96 ms
14,848 KB
testcase_22 AC 92 ms
14,976 KB
testcase_23 AC 92 ms
15,008 KB
testcase_24 AC 95 ms
14,976 KB
testcase_25 AC 90 ms
14,976 KB
testcase_26 AC 98 ms
14,848 KB
testcase_27 AC 105 ms
14,976 KB
testcase_28 AC 96 ms
14,976 KB
testcase_29 AC 94 ms
14,992 KB
testcase_30 AC 92 ms
14,984 KB
testcase_31 AC 92 ms
14,976 KB
testcase_32 AC 89 ms
14,976 KB
testcase_33 AC 87 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

#include <atcoder/dsu>
#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    int N, K;
    cin >> N >> K;

    atcoder::dsu uf(N);
    vector<vector<int>> to(N);

    int p = -1, q = -1;
    for (int e = 0; e < N; ++e) {
        int a, b;
        cin >> a >> b;
        --a, --b;
        if (!uf.same(a, b)) {
            uf.merge(a, b);
            to.at(a).push_back(b);
            to.at(b).push_back(a);
        } else {
            p = a, q = b;
        }
    }

    int v = -1;
    auto rec = [&](auto &&self, int now, int prv, int d) -> void {
        for (int nxt : to.at(now)) {
            if (nxt == prv) continue;
            if (nxt == q) {
                v = d + 1;
                return;
            }
            self(self, nxt, now, d + 1);
        }
    };
    rec(rec, p, -1, 1);

    mint dp0 = K * mint(K - 1).pow(N - v), dp1 = 0;
    while (--v) {
        auto dp0nxt = dp1;
        dp1 = dp0 * (K - 1) + dp1 * (K - 2);
        dp0 = dp0nxt;
    }

    cout << dp1.val() << endl;
}
0