0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 20:48:48 +00:00

G - Shinyruo and KFC

https://codeforces.com/gym/103428/submission/176151882
This commit is contained in:
Baoshuo Ren 2022-10-14 21:46:00 +08:00
parent eac2b91623
commit 0eaf016052
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

75
Gym/103428/G/G.cpp Normal file
View File

@ -0,0 +1,75 @@
#include <iostream>
#include <unordered_map>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 5e4 + 5;
const int mod = 998244353;
int n, m, max, fac[N], inv[N], fac_inv[N];
std::unordered_map<int, int> map;
int binpow(int a, int b) {
a %= mod;
int res = 1;
while (b) {
if (b & 1) res = static_cast<long long>(res) * a % mod;
a = static_cast<long long>(a) * a % mod;
b >>= 1;
}
return res;
}
inline int C(int n, int m) {
return static_cast<long long>(fac[n]) * fac_inv[m] % mod * fac_inv[n - m] % mod;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
fac[0] = 1;
for (int i = 1; i < N; i++) {
fac[i] = static_cast<long long>(fac[i - 1]) * i % mod;
}
inv[0] = inv[1] = 1;
for (int i = 2; i < N; i++) {
inv[i] = static_cast<long long>(mod - mod / i) * inv[mod % i] % mod;
}
fac_inv[0] = fac_inv[1] = 1;
for (int i = 2; i < N; i++) {
fac_inv[i] = static_cast<long long>(fac_inv[i - 1]) * inv[i] % mod;
}
cin >> n >> m;
for (int i = 1, x; i <= n; i++) {
cin >> x;
map[x]++;
max = std::max(max, x);
}
for (int i = 1; i < max; i++) {
cout << 0 << endl;
}
for (int k = max; k <= m; k++) {
int res = 1;
for (auto item : map) {
res = static_cast<long long>(res) * binpow(C(k, item.first), item.second) % mod;
}
cout << res << endl;
}
return 0;
}