結果
問題 | No.1392 Don't be together |
ユーザー | chocorusk |
提出日時 | 2021-02-12 22:11:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,135 bytes |
コンパイル時間 | 1,328 ms |
コンパイル使用メモリ | 132,156 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 22:10:33 |
合計ジャッジ時間 | 5,217 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 219 ms
6,940 KB |
testcase_09 | AC | 348 ms
6,944 KB |
testcase_10 | AC | 129 ms
6,940 KB |
testcase_11 | AC | 207 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 137 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 164 ms
6,940 KB |
testcase_20 | AC | 75 ms
6,940 KB |
testcase_21 | AC | 32 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | AC | 80 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 28 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <stack> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int p[5050]; const ll MOD=998244353; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll f[5000001], invf[5000001]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD; invf[n]=inv(f[n]); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; } ll comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]%MOD*invf[x-y]%MOD; } int main() { int n, m0; cin>>n>>m0; for(int i=0; i<n; i++){ cin>>p[i]; p[i]--; } if(m0==1){ cout<<0<<endl; return 0; } bool used[5050]={}; vector<int> v; for(int i=0; i<n; i++){ if(used[i]) continue; int c=0; int x=i; do{ used[x]=1; x=p[x]; c++; }while(!used[x]); v.push_back(c); } auto calc=[&](int m){ ll dp[5050][2]={}, s[5050]={}; dp[0][0]=1; for(int i=0; i<n; i++){ s[i]=(dp[i][0]+dp[i][1]*(m-1))%MOD; dp[i+1][0]=(s[i]-dp[i][0]+MOD)%MOD; dp[i+1][1]=(s[i]-dp[i][1]+MOD)%MOD; } ll res=1; for(auto c:v){ res=res*(s[c-1]-dp[c-1][0]+MOD)%MOD*m%MOD; } return res; }; fac(m0); ll ans=0; for(int i=2; i<=m0; i++){ ll c=comb(m0, i)*calc(i); if((m0-i)&1) (ans+=MOD-c)%=MOD; else (ans+=c)%=MOD; } ans=ans*invf[m0]%MOD; cout<<ans<<endl; return 0; }