結果
問題 | No.2243 Coaching Schedule |
ユーザー | rabimea |
提出日時 | 2023-03-10 22:24:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 778 ms / 4,000 ms |
コード長 | 2,325 bytes |
コンパイル時間 | 2,370 ms |
コンパイル使用メモリ | 215,764 KB |
実行使用メモリ | 16,860 KB |
最終ジャッジ日時 | 2024-09-18 04:34:34 |
合計ジャッジ時間 | 8,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,812 KB |
testcase_01 | AC | 6 ms
6,940 KB |
testcase_02 | AC | 6 ms
6,940 KB |
testcase_03 | AC | 5 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 81 ms
16,856 KB |
testcase_06 | AC | 117 ms
16,860 KB |
testcase_07 | AC | 115 ms
16,860 KB |
testcase_08 | AC | 114 ms
16,856 KB |
testcase_09 | AC | 147 ms
16,344 KB |
testcase_10 | AC | 149 ms
16,348 KB |
testcase_11 | AC | 149 ms
16,352 KB |
testcase_12 | AC | 778 ms
16,476 KB |
testcase_13 | AC | 595 ms
16,860 KB |
testcase_14 | AC | 599 ms
16,860 KB |
testcase_15 | AC | 595 ms
16,856 KB |
testcase_16 | AC | 72 ms
16,480 KB |
testcase_17 | AC | 35 ms
8,924 KB |
testcase_18 | AC | 94 ms
15,708 KB |
testcase_19 | AC | 137 ms
16,220 KB |
testcase_20 | AC | 107 ms
11,740 KB |
testcase_21 | AC | 52 ms
11,612 KB |
testcase_22 | AC | 50 ms
10,968 KB |
testcase_23 | AC | 10 ms
6,944 KB |
testcase_24 | AC | 68 ms
11,868 KB |
testcase_25 | AC | 15 ms
7,388 KB |
testcase_26 | AC | 28 ms
8,668 KB |
testcase_27 | AC | 73 ms
11,744 KB |
testcase_28 | AC | 15 ms
8,028 KB |
testcase_29 | AC | 109 ms
15,576 KB |
testcase_30 | AC | 109 ms
16,092 KB |
testcase_31 | AC | 111 ms
16,344 KB |
testcase_32 | AC | 50 ms
10,460 KB |
testcase_33 | AC | 29 ms
9,816 KB |
testcase_34 | AC | 93 ms
15,580 KB |
testcase_35 | AC | 112 ms
15,836 KB |
testcase_36 | AC | 102 ms
16,216 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vl = vector <ll>; const ll P = 998244353, G = 3; ll qpow(ll a, ll b) { ll r = 1, t = a; for(; b; b /= 2) { if(b & 1) r = r * t % P; t = t * t % P; } return r; } ll INV(ll x) { return qpow(x, P - 2); } void ntt(vl &a, int op = 1) { // P: 模数, G: 原根 int n = a.size(); for (int i = 1, j = 0; i < n - 1; ++i) { for (int s = n; j ^= s >>= 1, ~j & s;) {} if (i < j) swap(a[i], a[j]); } for (int i = 1; i < n; i *= 2) { ll u = qpow(G, (P - 1) / (i * 2)); if (op == -1) u = INV(u); for (int j = 0; j < n; j += i * 2) { ll w = 1; for (int k = 0; k < i; ++k, w = w * u % P) { int x = a[j + k], y = w * a[j + k + i] % P; #define modto(x) ({if ((x) >= P) (x) -= P;}) a[j + k] = x + y; modto(a[j + k]); a[j + k + i] = x - y + P; modto(a[j + k + i]); #undef modto }}} if (op == -1) { ll inv = INV(n); for (int i = 0; i < n; ++i) a[i] = a[i] * inv % P; } } vl multi(vl a, vl b) { int m = a.size() + b.size() - 1; int n = 1; while (n < m) n *= 2; vl fa(n), fb(n), fc(n); copy(a.begin(), a.end(), fa.begin()); ntt(fa); copy(b.begin(), b.end(), fb.begin()); ntt(fb); for (int i = 0; i < n; ++i) fc[i] = fa[i] * fb[i] % P; ntt(fc, -1); fc.resize(m); return fc; } const int N = 1e5 + 11; int b[N]; ll fac[N], inv[N], ifac[N]; ll binom(int n, int m) { if(n < m) return 0; return fac[n] * ifac[m] % P * ifac[n - m] % P; } ll f[N], g[N]; int main() { ios::sync_with_stdio(0); inv[1] = 1; for(int i = 2; i < N; i ++) inv[i] = (P - P / i) * inv[P % i] % P; fac[0] = ifac[0] = 1; for(int i = 1; i < N; i ++) { fac[i] = i * fac[i - 1] % P; ifac[i] = inv[i] * ifac[i - 1] % P; } int m, n; cin >> m >> n; for(int i = 1; i <= n; i ++) { int a; cin >> a; b[a] ++; } map <int, int> mp; for(int i = 1; i <= m; i ++) if(b[i]) mp[b[i]] ++; for(int k = 1; k <= n; k ++) { f[k] = 1; for(auto [b, c] : mp) { f[k] *= qpow(binom(k, b) * fac[b] % P, c); f[k] %= P; } f[k] = f[k] * ifac[k] % P; } for(int i = 0; i <= n; i ++) { int sgn = (i & 1) ? P - 1 : 1; g[i] = sgn * ifac[i] % P; } vl F(f, f + n + 1); vl G(g, g + n + 1); vl H = multi(F, G); ll ans = 0; for(int i = 0; i <= n; i ++) { ans += H[i] * fac[i]; ans %= P; } cout << ans << '\n'; }