QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#255642 | #7754. Rolling For Days | ucup-team055# | AC ✓ | 655ms | 50812kb | C++17 | 3.5kb | 2023-11-18 16:34:33 | 2023-11-18 16:34:36 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)
using ll =long long;
#define all(p) p.begin(),p.end()
const int mod=998244353;
struct mint {
static constexpr int m=998244353;
int x;
mint():x(0){}
mint(ll x_):x(x_%m){if(x<0)x+=m;}
mint &operator+=(mint b){if((x+=b.x)>=m)x-=m;return *this;}
mint &operator-=(mint b){if((x-=b.x)<0) x+=m;return *this;}
mint &operator*=(mint b){x=(ll)(x)*b.x%m;return *this;}
mint pow(ll e)const{
mint r=1,b=*this;
while(e){
if(e&1) r*=b;
b*=b;
e>>=1;
}
return r;
}
mint inv(){return pow(m-2);}
mint operator/=(mint b){return *this*=b.inv();}
friend mint operator+(mint a,mint b){return a+=b;}
friend mint operator-(mint a,mint b){return a-=b;}
friend mint operator*(mint a,mint b){return a*=b;}
friend mint operator/(mint a,mint b){return a/=b;}
};
mint G=3;
void ntt(bool inv,vector<mint> &a){
int n=a.size(),s=__lg(n);
assert(1<<s==n);
static vector<mint> ep,iep;
while(ep.size()<=s){
ep.push_back(G.pow((mod-1)>>ep.size()));
iep.push_back(ep.back().inv());
}
vector<mint> b(n);
rep(i,1,s+1){
int w=1<<(s-i);
mint base=inv?iep[i]:ep[i],now=1;
for(int y=0;y<n/2;y+=w){
rep(x,0,w){
auto l=a[y<<1|x];
auto r=now*a[y<<1|x|w];
b[y|x]=l+r;
b[y|x|n>>1]=l-r;
}
now*=base;
}
swap(a,b);
}
}
vector<mint> mult(const vector<mint> &a,const vector<mint> &b){
const int n=a.size(),m=b.size();
if(!n||!m) return {};
int z=1;
while(z<n+m-1) z<<=1;
auto a2=a,b2=b;
a2.resize(z),b2.resize(z);
ntt(0,a2),ntt(0,b2);
rep(i,0,z) a2[i]*=b2[i];
ntt(1,a2);
a2.resize(n+m-1);
mint iz=mint(z).inv();
rep(i,0,n+m-1) a2[i]*=iz;
return a2;
}
const int len=1100;
vector<mint> fact(len,1);
vector<mint> fact_rev(len,1);
void fact_init(){
rep(i,1,len) fact[i]=fact[i-1]*i;
fact_rev[len-1]=fact[len-1].inv();
for(int i=len-1;i>0;i--) fact_rev[i-1]=fact_rev[i]*i;
}
mint comb(int a,int b){
if(a<b||b<0) return 0;
return fact[a]*fact_rev[a-b]*fact_rev[b];
}
mint rev(int a){
if(0<a&&a<len) return fact[a-1]*fact_rev[a];
return ((mint)(a)).inv();
}
void solve(){
fact_init();
int N,M;
cin>>N>>M;
vector<int> A(M),B(M);
rep(i,0,M) cin>>A[i];
rep(i,0,M) cin>>B[i];
int L=N+5;
vector<vector<mint>> f(M),g(M);
rep(i,0,M){
g[i].resize(L*(A[i]-B[i]+1),0);
rep(j,B[i],A[i]+1){
g[i][j+L*(j-B[i])]=comb(A[i],j);
}
f[i]=g[i];
rep(j,0,B[i]){
f[i][j]=comb(A[i],j);
}
}
rep(i,0,M-1) f.push_back(mult(f[i*2],f[i*2+1])),g.push_back(mult(g[i*2],g[i*2+1]));
mint ans=0;
rep(s,0,N) rep(t,0,N){
if(s+t*L>=f[2*M-2].size()) break;
auto tmp=f[2*M-2][s+t*L]-g[2*M-2][s+t*L];
if(tmp.x==0) continue;
ans+=tmp*fact[s]*fact[N-s]*(1+rev(N-s)*t);
}
ans*=fact_rev[N];
cout<<(mod+ans.x%mod)%mod<<"\n";
}
/*
I
2 2
1 1
1 1
2
---
4 2
2 2
2 1
582309210
---
1000 12
101 43 34 281 23 24 12 25 66 222 145 24
37 43 27 257 5 11 12 19 62 41 87 13
265294941
*/
int main(){
int t=1;//cin>>t;
rep(i,0,t) solve();
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3436kb
input:
2 2 1 1 1 1
output:
2
result:
ok answer is '2'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3424kb
input:
4 2 2 2 2 1
output:
582309210
result:
ok answer is '582309210'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3340kb
input:
5 5 1 1 1 1 1 0 0 0 0 1
output:
5
result:
ok answer is '5'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3432kb
input:
4 4 1 1 1 1 1 1 1 0
output:
831870299
result:
ok answer is '831870299'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3372kb
input:
5 2 4 1 2 1
output:
598946616
result:
ok answer is '598946616'
Test #6:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
5 2 3 2 3 1
output:
482484776
result:
ok answer is '482484776'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3468kb
input:
5 5 1 1 1 1 1 0 1 1 1 0
output:
665496242
result:
ok answer is '665496242'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3376kb
input:
3 3 1 1 1 1 1 0
output:
499122180
result:
ok answer is '499122180'
Test #9:
score: 0
Accepted
time: 1ms
memory: 3468kb
input:
5 5 1 1 1 1 1 1 0 1 1 1
output:
582309212
result:
ok answer is '582309212'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3372kb
input:
3 2 2 1 2 0
output:
499122180
result:
ok answer is '499122180'
Test #11:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
20 5 1 6 7 2 4 0 1 3 1 4
output:
75028873
result:
ok answer is '75028873'
Test #12:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
15 5 4 2 3 4 2 2 1 1 2 1
output:
585494868
result:
ok answer is '585494868'
Test #13:
score: 0
Accepted
time: 1ms
memory: 3400kb
input:
20 4 5 4 3 8 1 2 2 3
output:
156108321
result:
ok answer is '156108321'
Test #14:
score: 0
Accepted
time: 0ms
memory: 3492kb
input:
15 2 6 9 2 8
output:
672033760
result:
ok answer is '672033760'
Test #15:
score: 0
Accepted
time: 1ms
memory: 3464kb
input:
20 12 1 2 1 1 2 4 1 3 2 1 1 1 1 0 0 1 0 0 1 0 2 0 1 1
output:
691640771
result:
ok answer is '691640771'
Test #16:
score: 0
Accepted
time: 1ms
memory: 3480kb
input:
19 12 1 1 1 2 1 2 2 1 2 4 1 1 1 1 0 1 1 0 1 1 0 2 1 0
output:
777326448
result:
ok answer is '777326448'
Test #17:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
20 2 19 1 1 1
output:
299473325
result:
ok answer is '299473325'
Test #18:
score: 0
Accepted
time: 1ms
memory: 3380kb
input:
19 2 14 5 10 1
output:
497380388
result:
ok answer is '497380388'
Test #19:
score: 0
Accepted
time: 5ms
memory: 3724kb
input:
100 5 10 25 6 19 40 0 2 4 5 11
output:
773338801
result:
ok answer is '773338801'
Test #20:
score: 0
Accepted
time: 2ms
memory: 3572kb
input:
64 5 1 12 13 33 5 1 0 1 20 0
output:
571823997
result:
ok answer is '571823997'
Test #21:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
100 4 15 38 24 23 0 20 0 1
output:
635309463
result:
ok answer is '635309463'
Test #22:
score: 0
Accepted
time: 2ms
memory: 3572kb
input:
88 5 15 25 9 19 20 8 15 9 18 17
output:
400310961
result:
ok answer is '400310961'
Test #23:
score: 0
Accepted
time: 5ms
memory: 3628kb
input:
100 12 2 2 13 9 13 7 2 1 6 15 17 13 0 0 5 7 10 7 0 1 0 0 4 4
output:
552732942
result:
ok answer is '552732942'
Test #24:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
59 12 7 6 3 5 4 6 5 2 5 6 5 5 4 5 2 5 3 6 0 2 1 0 3 3
output:
27023521
result:
ok answer is '27023521'
Test #25:
score: 0
Accepted
time: 2ms
memory: 3568kb
input:
100 3 10 60 30 0 28 21
output:
261595276
result:
ok answer is '261595276'
Test #26:
score: 0
Accepted
time: 1ms
memory: 3656kb
input:
84 2 39 45 4 23
output:
897695217
result:
ok answer is '897695217'
Test #27:
score: 0
Accepted
time: 212ms
memory: 23816kb
input:
1000 5 370 136 129 182 183 312 47 112 22 119
output:
705415872
result:
ok answer is '705415872'
Test #28:
score: 0
Accepted
time: 191ms
memory: 22832kb
input:
766 5 372 194 98 90 12 165 123 53 27 0
output:
870555094
result:
ok answer is '870555094'
Test #29:
score: 0
Accepted
time: 44ms
memory: 10000kb
input:
1000 2 374 626 175 591
output:
501708945
result:
ok answer is '501708945'
Test #30:
score: 0
Accepted
time: 2ms
memory: 4608kb
input:
701 1 701 413
output:
413
result:
ok answer is '413'
Test #31:
score: 0
Accepted
time: 319ms
memory: 28572kb
input:
1000 12 101 43 34 281 23 24 12 25 66 222 145 24 37 43 27 257 5 11 12 19 62 41 87 13
output:
265294941
result:
ok answer is '265294941'
Test #32:
score: 0
Accepted
time: 564ms
memory: 47944kb
input:
942 12 83 142 96 10 3 10 60 93 398 13 11 23 37 56 36 0 3 0 10 35 33 1 9 19
output:
956409637
result:
ok answer is '956409637'
Test #33:
score: 0
Accepted
time: 203ms
memory: 25684kb
input:
1000 4 473 65 438 24 79 61 327 24
output:
491224221
result:
ok answer is '491224221'
Test #34:
score: 0
Accepted
time: 220ms
memory: 21156kb
input:
870 4 320 17 182 351 145 0 181 4
output:
664946681
result:
ok answer is '664946681'
Test #35:
score: 0
Accepted
time: 533ms
memory: 43092kb
input:
1000 12 102 2 110 62 106 176 37 27 6 208 92 72 57 0 106 20 36 4 20 12 3 134 8 61
output:
3888811
result:
ok answer is '3888811'
Test #36:
score: 0
Accepted
time: 395ms
memory: 30228kb
input:
1000 12 1 44 209 187 27 71 127 139 134 22 20 19 0 19 153 113 27 29 82 74 37 19 20 9
output:
278584590
result:
ok answer is '278584590'
Test #37:
score: 0
Accepted
time: 655ms
memory: 50812kb
input:
1000 12 193 84 261 36 75 7 70 12 38 22 8 194 68 15 11 20 16 7 53 1 6 6 6 189
output:
704313398
result:
ok answer is '704313398'
Test #38:
score: 0
Accepted
time: 250ms
memory: 24360kb
input:
1000 12 171 135 21 74 115 3 4 122 32 70 224 29 71 120 20 66 61 2 1 102 28 0 201 3
output:
608268027
result:
ok answer is '608268027'
Test #39:
score: 0
Accepted
time: 387ms
memory: 30280kb
input:
1000 12 54 20 201 182 16 66 23 153 36 39 151 59 33 5 189 80 13 56 13 38 7 22 92 21
output:
795531860
result:
ok answer is '795531860'
Test #40:
score: 0
Accepted
time: 321ms
memory: 30556kb
input:
1000 12 218 16 12 152 67 64 65 3 90 263 44 6 107 2 2 143 11 28 53 2 55 106 39 5
output:
903827471
result:
ok answer is '903827471'
Extra Test:
score: 0
Extra Test Passed