結果
問題 | No.2531 Coloring Vertices on Namori |
ユーザー | coindarw |
提出日時 | 2023-11-03 22:56:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 189 ms / 2,000 ms |
コード長 | 2,742 bytes |
コンパイル時間 | 4,895 ms |
コンパイル使用メモリ | 279,080 KB |
実行使用メモリ | 35,268 KB |
最終ジャッジ日時 | 2024-09-25 21:18:19 |
合計ジャッジ時間 | 8,648 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 136 ms
35,268 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 140 ms
35,224 KB |
testcase_08 | AC | 175 ms
35,268 KB |
testcase_09 | AC | 143 ms
35,268 KB |
testcase_10 | AC | 173 ms
35,268 KB |
testcase_11 | AC | 49 ms
16,444 KB |
testcase_12 | AC | 51 ms
16,572 KB |
testcase_13 | AC | 51 ms
16,440 KB |
testcase_14 | AC | 189 ms
35,224 KB |
testcase_15 | AC | 185 ms
35,244 KB |
testcase_16 | AC | 187 ms
35,264 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 88 ms
14,928 KB |
testcase_21 | AC | 86 ms
15,044 KB |
testcase_22 | AC | 79 ms
14,968 KB |
testcase_23 | AC | 78 ms
15,004 KB |
testcase_24 | AC | 84 ms
14,876 KB |
testcase_25 | AC | 86 ms
14,892 KB |
testcase_26 | AC | 81 ms
14,952 KB |
testcase_27 | AC | 86 ms
14,972 KB |
testcase_28 | AC | 81 ms
14,952 KB |
testcase_29 | AC | 103 ms
14,896 KB |
testcase_30 | AC | 86 ms
14,968 KB |
testcase_31 | AC | 78 ms
14,896 KB |
testcase_32 | AC | 83 ms
15,036 KB |
testcase_33 | AC | 82 ms
14,912 KB |
ソースコード
#ifdef ONLINE_JUDGE #include <bits/stdc++.h> #include <atcoder/all> #else #include <mylibs/all.h> #endif using ll = long long; using lll = __int128_t; #define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i) #define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i) #define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i) #define rreps(i, n) for (int i = ((int)(n)); i > 0; --i) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) #define repc2(i, s, n) for (int i = (s); i <= (int)(n); i++) #define length(v) ((int)(v).size()) constexpr int inf = 2'000'000'000; constexpr ll linf = 4'000'000'000'000'000'000, M7 = 1'000'000'007, M9 = 998'244'353; #define all(v) begin(v), end(v) #define rall(v) rbegin(v), rend(v) using namespace std; using namespace atcoder; using mint = modint998244353; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n, k; cin >> n >> k; struct edge { int to; edge(int to) : to(to) {} }; vector<vector<edge>> G(n); rep(i, n) { int a, b; cin >> a >> b; a--, b--; G[a].emplace_back(b); G[b].emplace_back(a); } auto search_cycle = [](const auto& G) { const int n = G.size(); vector<bool> seen(n); vector<int> prv(n, -1); rep(i, n) { if (seen.at(i)) continue; stack<int> s; s.emplace(i); while (!s.empty()) { int u = s.top(); s.pop(); seen.at(u) = true; for (auto& e : G.at(u)) { if (!seen.at(e.to)) { prv.at(e.to) = u; s.emplace(e.to); } else if (e.to != prv.at(u)) { vector<int> cycle = {u}; int p = u; while (p != e.to) { p = prv.at(p); cycle.emplace_back(p); } reverse(all(cycle)); return cycle; } } } } return vector<int>(); }; auto cycle = search_cycle(G); set<int> st(all(cycle)); int m = cycle.size(); vector<vector<mint>> dp = vector<vector<mint>>(m, vector<mint>(2)); dp.at(0).at(1) = k; rep(i, m - 2) { dp.at(i + 1).at(0) = dp.at(i).at(0) * (k - 2) + dp.at(i).at(1) * (k - 1); dp.at(i + 1).at(1) = dp.at(i).at(0); } dp.at(m - 1).at(0) = dp.at(m - 2).at(0) * (k - 2) + dp.at(m - 2).at(1) * (k - 1); mint ans = dp.at(m - 1).at(0) * mint(k - 1).pow(n - cycle.size()); cout << ans.val() << endl; return 0; }