結果
問題 | No.1392 Don't be together |
ユーザー | 🍮かんプリン |
提出日時 | 2021-02-12 23:24:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 358 ms / 2,000 ms |
コード長 | 4,522 bytes |
コンパイル時間 | 1,805 ms |
コンパイル使用メモリ | 179,936 KB |
実行使用メモリ | 198,912 KB |
最終ジャッジ日時 | 2024-07-20 01:06:22 |
合計ジャッジ時間 | 6,910 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 150 ms
83,712 KB |
testcase_07 | AC | 248 ms
160,640 KB |
testcase_08 | AC | 244 ms
141,568 KB |
testcase_09 | AC | 358 ms
198,912 KB |
testcase_10 | AC | 157 ms
97,536 KB |
testcase_11 | AC | 244 ms
152,576 KB |
testcase_12 | AC | 144 ms
91,264 KB |
testcase_13 | AC | 206 ms
127,232 KB |
testcase_14 | AC | 217 ms
141,312 KB |
testcase_15 | AC | 155 ms
95,872 KB |
testcase_16 | AC | 242 ms
153,856 KB |
testcase_17 | AC | 163 ms
102,784 KB |
testcase_18 | AC | 214 ms
137,856 KB |
testcase_19 | AC | 189 ms
123,008 KB |
testcase_20 | AC | 80 ms
55,296 KB |
testcase_21 | AC | 31 ms
22,272 KB |
testcase_22 | AC | 136 ms
84,736 KB |
testcase_23 | AC | 89 ms
58,368 KB |
testcase_24 | AC | 52 ms
34,816 KB |
testcase_25 | AC | 96 ms
63,488 KB |
testcase_26 | AC | 26 ms
18,304 KB |
testcase_27 | AC | 39 ms
26,112 KB |
testcase_28 | AC | 105 ms
70,400 KB |
testcase_29 | AC | 52 ms
36,864 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2021.02.12 23:24:38 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; class UnionFind { private: vector<int> par; public: UnionFind(int n) { par.resize(n, -1); } int root(int x) { if (par[x] < 0) return x; return par[x] = root(par[x]); } bool unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return false; if (size(rx) < size(ry)) swap(rx, ry); par[rx] += par[ry]; par[ry] = rx; return true; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } int size(int x) { return -par[root(x)]; } }; template< int MOD > struct mint { public: long long x; mint(long long x = 0) :x((x%MOD+MOD)%MOD) {} mint(std::string &s) { long long z = 0; for (int i = 0; i < s.size(); i++) { z *= 10; z += s[i] - '0'; z %= MOD; } this->x = z; } mint& operator+=(const mint &a) { if ((x += a.x) >= MOD) x -= MOD; return *this; } mint& operator-=(const mint &a) { if ((x += MOD - a.x) >= MOD) x -= MOD; return *this; } mint& operator*=(const mint &a) { (x *= a.x) %= MOD; return *this; } mint& operator/=(const mint &a) { long long n = MOD - 2; mint u = 1, b = a; while (n > 0) { if (n & 1) { u *= b; } b *= b; n >>= 1; } return *this *= u; } mint operator+(const mint &a) const { mint res(*this); return res += a; } mint operator-() const {return mint() -= *this; } mint operator-(const mint &a) const { mint res(*this); return res -= a; } mint operator*(const mint &a) const { mint res(*this); return res *= a; } mint operator/(const mint &a) const { mint res(*this); return res /= a; } friend std::ostream& operator<<(std::ostream &os, const mint &n) { return os << n.x; } friend std::istream &operator>>(std::istream &is, mint &n) { long long x; is >> x; n = mint(x); return is; } bool operator==(const mint &a) const { return this->x == a.x; } bool operator!=(const mint &a) const { return this->x != a.x; } mint pow(long long k) const { mint ret = 1; mint p = this->x; while (k > 0) { if (k & 1) { ret *= p; } p *= p; k >>= 1; } return ret; } }; constexpr int MOD = 998244353; template<typename T> struct Combination { private: int N; public: vector< T > FACT, IFACT; Combination(int n) : N(n) { FACT.resize(n + 1); IFACT.resize(n + 1); FACT[0] = 1; for (int i = 1; i <= n; i++) { FACT[i] = FACT[i - 1] * i; } IFACT[n] = T(1) / FACT[n]; for (int i = n-1; i >= 0; i--) { IFACT[i] = IFACT[i+1] * (i+1); } } T comb(int n, int r) { if (n < 0 || r < 0 || r > n) return 0; if (r > n / 2) r = n - r; return FACT[n] * IFACT[n - r] * IFACT[r]; } }; int main() { int n,m;cin >> n >> m; UnionFind uf(n); Combination<mint<MOD>> cb(m); for (int i = 0; i < n; i++) { int p;cin >> p; uf.unite(p-1,i); } vector<vector<mint<MOD>>> f(n+1,vector<mint<MOD>>(m+1)); for (int i = 0; i < n-1; i++) { if (i == 0) { for (int j = 0; j < m-1; j++) { f[i+2][j+2] = mint<MOD>(j+2)*(j+1); } } else { for (int j = 0; j < m-1; j++) { f[i+2][j+2] = f[i+1][j+2]*j+f[i][j+2]*(j+1); } } } vector<int> c; for (int i = 0; i < n; i++) { if (uf.root(i) == i) { c.push_back(uf.size(i)); } } mint<MOD> ans = 0; for (int i = 0; i <= m; i++) { mint<MOD> total = 1; for (int j = 0; j < c.size(); j++) { total *= f[c[j]][i]; } if ((i & 1) == (m & 1)) { ans += total * cb.comb(m,i); } else { ans -= total * cb.comb(m,i); } } cout << ans * cb.IFACT[m] << endl; return 0; }