QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#110973 | #6323. Range NEQ | 8BQube | AC ✓ | 172ms | 28156kb | C++20 | 2.6kb | 2023-06-05 03:05:26 | 2023-06-05 03:05:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define SZ(a) ((int)a.size())
#define ALL(v) v.begin(), v.end()
#define pb push_back
const int MOD = 998244353;
const int MAXC = 1 << 20;
void add(int &x, int val) {
x += val;
if (x >= MOD) x -= MOD;
}
int pw(int a, int n) {
int rt = 1;
for (; n; n >>= 1, a = (ll)a * a % MOD)
if (n & 1)
rt = (ll)rt * a % MOD;
return rt;
}
template<int MAXN, ll P, ll RT> //MAXN must be 2^k
struct NTT {
ll w[MAXN];
ll mpow(ll a, ll n) {
return pw(a, n);
}
ll minv(ll a) { return mpow(a, P - 2); }
NTT() {
ll dw = mpow(RT, (P - 1) / MAXN);
w[0] = 1;
for (int i = 1; i < MAXN; ++i) w[i] = w[i - 1] * dw % P;
}
void bitrev(ll *a, int n) {
int i = 0;
for (int j = 1; j < n - 1; ++j) {
for (int k = n >> 1; (i ^= k) < k; k >>= 1);
if (j < i) swap(a[i], a[j]);
}
}
void operator()(ll *a, int n, bool inv = false) { //0 <= a[i] < P
bitrev(a, n);
for (int L = 2; L <= n; L <<= 1) {
int dx = MAXN / L, dl = L >> 1;
for (int i = 0; i < n; i += L) {
for (int j = i, x = 0; j < i + dl; ++j, x += dx) {
ll tmp = a[j + dl] * w[x] % P;
if ((a[j + dl] = a[j] - tmp) < 0) a[j + dl] += P;
if ((a[j] += tmp) >= P) a[j] -= P;
}
}
}
if (inv) {
reverse(a + 1, a + n);
ll invn = minv(n);
for (int i = 0; i < n; ++i) a[i] = a[i] * invn % P;
}
}
};
NTT<MAXC, MOD, 3> ntt;
int fac[MAXC + 5], ifac[MAXC + 5];
void build() {
fac[0] = 1;
for (int i = 1; i <= MAXC; ++i)
fac[i] = (ll)fac[i - 1] * i % MOD;
ifac[MAXC] = pw(fac[MAXC], MOD - 2);
for (int i = MAXC - 1; i >= 0; --i)
ifac[i] = (ll)ifac[i + 1] * (i + 1) % MOD;
}
ll arr[MAXC];
int main() {
ios::sync_with_stdio(0), cin.tie(0);
int n, m;
build();
cin >> n >> m;
for (int i = 0; i <= m; ++i)
arr[i] = (ll)fac[m] * ifac[m - i] % MOD * fac[m] % MOD * ifac[m - i] % MOD * ifac[i] % MOD;
ntt(arr, MAXC);
for (int i = 0; i < MAXC; ++i)
arr[i] = pw(arr[i], n);
ntt(arr, MAXC, true);
int ans = 0;
for (int i = 0; i <= n * m; ++i) {
int cur = (ll)arr[i] * fac[n * m - i] % MOD;
if (i & 1) add(ans, MOD - cur);
else add(ans, cur);
}
cout << ans << "\n";
}
详细
Test #1:
score: 100
Accepted
time: 126ms
memory: 28104kb
input:
2 2
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 125ms
memory: 27976kb
input:
5 1
output:
44
result:
ok 1 number(s): "44"
Test #3:
score: 0
Accepted
time: 166ms
memory: 27980kb
input:
167 91
output:
284830080
result:
ok 1 number(s): "284830080"
Test #4:
score: 0
Accepted
time: 125ms
memory: 27980kb
input:
2 1
output:
1
result:
ok 1 number(s): "1"
Test #5:
score: 0
Accepted
time: 136ms
memory: 27968kb
input:
2 3
output:
36
result:
ok 1 number(s): "36"
Test #6:
score: 0
Accepted
time: 138ms
memory: 28100kb
input:
2 4
output:
576
result:
ok 1 number(s): "576"
Test #7:
score: 0
Accepted
time: 134ms
memory: 28100kb
input:
3 1
output:
2
result:
ok 1 number(s): "2"
Test #8:
score: 0
Accepted
time: 123ms
memory: 27968kb
input:
3 2
output:
80
result:
ok 1 number(s): "80"
Test #9:
score: 0
Accepted
time: 127ms
memory: 27976kb
input:
3 3
output:
12096
result:
ok 1 number(s): "12096"
Test #10:
score: 0
Accepted
time: 121ms
memory: 28152kb
input:
3 4
output:
4783104
result:
ok 1 number(s): "4783104"
Test #11:
score: 0
Accepted
time: 123ms
memory: 27992kb
input:
4 1
output:
9
result:
ok 1 number(s): "9"
Test #12:
score: 0
Accepted
time: 138ms
memory: 27988kb
input:
4 2
output:
4752
result:
ok 1 number(s): "4752"
Test #13:
score: 0
Accepted
time: 123ms
memory: 27980kb
input:
4 3
output:
17927568
result:
ok 1 number(s): "17927568"
Test #14:
score: 0
Accepted
time: 139ms
memory: 28072kb
input:
4 4
output:
776703752
result:
ok 1 number(s): "776703752"
Test #15:
score: 0
Accepted
time: 146ms
memory: 27996kb
input:
5 2
output:
440192
result:
ok 1 number(s): "440192"
Test #16:
score: 0
Accepted
time: 138ms
memory: 28104kb
input:
5 3
output:
189125068
result:
ok 1 number(s): "189125068"
Test #17:
score: 0
Accepted
time: 130ms
memory: 28100kb
input:
5 4
output:
975434093
result:
ok 1 number(s): "975434093"
Test #18:
score: 0
Accepted
time: 162ms
memory: 27960kb
input:
1000 1000
output:
720037464
result:
ok 1 number(s): "720037464"
Test #19:
score: 0
Accepted
time: 145ms
memory: 28100kb
input:
72 42
output:
638177567
result:
ok 1 number(s): "638177567"
Test #20:
score: 0
Accepted
time: 136ms
memory: 27996kb
input:
15 19
output:
663050288
result:
ok 1 number(s): "663050288"
Test #21:
score: 0
Accepted
time: 148ms
memory: 27916kb
input:
68 89
output:
94365047
result:
ok 1 number(s): "94365047"
Test #22:
score: 0
Accepted
time: 157ms
memory: 28036kb
input:
92 37
output:
652605307
result:
ok 1 number(s): "652605307"
Test #23:
score: 0
Accepted
time: 156ms
memory: 27984kb
input:
61 87
output:
498277867
result:
ok 1 number(s): "498277867"
Test #24:
score: 0
Accepted
time: 145ms
memory: 27916kb
input:
81 40
output:
133095344
result:
ok 1 number(s): "133095344"
Test #25:
score: 0
Accepted
time: 140ms
memory: 27984kb
input:
7 91
output:
524164813
result:
ok 1 number(s): "524164813"
Test #26:
score: 0
Accepted
time: 145ms
memory: 28076kb
input:
31 18
output:
361233485
result:
ok 1 number(s): "361233485"
Test #27:
score: 0
Accepted
time: 146ms
memory: 28156kb
input:
74 54
output:
500686087
result:
ok 1 number(s): "500686087"
Test #28:
score: 0
Accepted
time: 148ms
memory: 27996kb
input:
32 2
output:
586504335
result:
ok 1 number(s): "586504335"
Test #29:
score: 0
Accepted
time: 161ms
memory: 27972kb
input:
656 718
output:
346764298
result:
ok 1 number(s): "346764298"
Test #30:
score: 0
Accepted
time: 158ms
memory: 27980kb
input:
254 689
output:
358078813
result:
ok 1 number(s): "358078813"
Test #31:
score: 0
Accepted
time: 161ms
memory: 28148kb
input:
713 674
output:
914437613
result:
ok 1 number(s): "914437613"
Test #32:
score: 0
Accepted
time: 151ms
memory: 27980kb
input:
136 698
output:
56687290
result:
ok 1 number(s): "56687290"
Test #33:
score: 0
Accepted
time: 166ms
memory: 27956kb
input:
369 401
output:
312325811
result:
ok 1 number(s): "312325811"
Test #34:
score: 0
Accepted
time: 158ms
memory: 27920kb
input:
280 204
output:
280012063
result:
ok 1 number(s): "280012063"
Test #35:
score: 0
Accepted
time: 162ms
memory: 27972kb
input:
904 225
output:
162909174
result:
ok 1 number(s): "162909174"
Test #36:
score: 0
Accepted
time: 168ms
memory: 28100kb
input:
855 928
output:
39885159
result:
ok 1 number(s): "39885159"
Test #37:
score: 0
Accepted
time: 167ms
memory: 27984kb
input:
503 365
output:
745115888
result:
ok 1 number(s): "745115888"
Test #38:
score: 0
Accepted
time: 165ms
memory: 27984kb
input:
646 996
output:
610925577
result:
ok 1 number(s): "610925577"
Test #39:
score: 0
Accepted
time: 166ms
memory: 28156kb
input:
990 918
output:
203469632
result:
ok 1 number(s): "203469632"
Test #40:
score: 0
Accepted
time: 160ms
memory: 28144kb
input:
961 949
output:
169566857
result:
ok 1 number(s): "169566857"
Test #41:
score: 0
Accepted
time: 157ms
memory: 28000kb
input:
946 932
output:
352423195
result:
ok 1 number(s): "352423195"
Test #42:
score: 0
Accepted
time: 169ms
memory: 28104kb
input:
903 981
output:
196309824
result:
ok 1 number(s): "196309824"
Test #43:
score: 0
Accepted
time: 172ms
memory: 27912kb
input:
916 988
output:
487208972
result:
ok 1 number(s): "487208972"
Test #44:
score: 0
Accepted
time: 166ms
memory: 27984kb
input:
982 982
output:
387421488
result:
ok 1 number(s): "387421488"
Test #45:
score: 0
Accepted
time: 172ms
memory: 27956kb
input:
955 911
output:
955637031
result:
ok 1 number(s): "955637031"
Test #46:
score: 0
Accepted
time: 159ms
memory: 27984kb
input:
906 999
output:
798469943
result:
ok 1 number(s): "798469943"
Test #47:
score: 0
Accepted
time: 162ms
memory: 28152kb
input:
982 975
output:
193506289
result:
ok 1 number(s): "193506289"
Test #48:
score: 0
Accepted
time: 164ms
memory: 27988kb
input:
921 991
output:
431202149
result:
ok 1 number(s): "431202149"