結果
問題 | No.2531 Coloring Vertices on Namori |
ユーザー | twooimp2 |
提出日時 | 2023-11-03 23:48:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,986 bytes |
コンパイル時間 | 2,313 ms |
コンパイル使用メモリ | 186,452 KB |
実行使用メモリ | 29,472 KB |
最終ジャッジ日時 | 2024-09-25 21:36:47 |
合計ジャッジ時間 | 8,093 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 161 ms
26,812 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 175 ms
26,744 KB |
testcase_15 | AC | 180 ms
26,752 KB |
testcase_16 | AC | 176 ms
26,676 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } int main(){ ll n,k; cin>>n>>k; vector<vector<ll>> G(n); vector<ll> in(n,0); for(ll i=0;i<n;i++){ ll u,v; cin>>u>>v; u--; v--; G[u].push_back(v); G[v].push_back(u); in[u]++; in[v]++; } queue<ll> que; for(ll i=0;i<n;i++){ if(in[i]==1){ que.push(i); } } vector<bool> cy(n,true); while(que.size()){ ll q=que.front(); que.pop(); in[q]--; cy[q]=false; for(ll u:G[q]){ in[u]--; if(in[u]==1){ que.push(u); } } } ll cycnt=0; vector<bool> seen(n); for(ll i=0;i<n;i++){ seen[i]=cy[i]; if(cy[i]){ cycnt++; } } ll id=0; vector<vector<ll>> nc; for(ll i=0;i<n;i++){ if(!seen[i]){ id++; que.push(i); nc.resize(id); while(que.size()){ ll q=que.front(); que.pop(); nc[id-1].push_back(q); for(ll u:G[q]){ if(!seen[u]){ seen[u]=true; que.push(u); } } } } } ll ans=0; ll mod=998244353; for(ll i=0;i<id;i++){ sort(nc[i].begin(),nc[i].end()); nc[i].erase(unique(nc[i].begin(),nc[i].end()),nc[i].end()); ans+=modpow(k-1,(ll)nc[i].size(),mod); ans%=mod; } vector<vector<ll>> dp(cycnt+1,vector<ll>(2,0)); dp[1][1]=k; for(ll i=1;i<cycnt;i++){ if(i==cycnt-1){ dp[i+1][0]+=dp[i][1]*(k-1)%mod; dp[i+1][0]%=mod; dp[i+1][0]+=dp[i][0]*(k-2)%mod; dp[i+1][0]%=mod; }else{ dp[i+1][0]+=dp[i][0]*(k-2); dp[i+1][0]%=mod; dp[i+1][0]+=dp[i][1]*(k-1); dp[i+1][0]%=mod; dp[i+1][1]+=dp[i][0]; dp[i+1][1]%=mod; } } ans+=dp[cycnt][0]; ans%=mod; cout<<ans%mod<<endl; }