QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#700420 | #9489. 0100 Insertion | TheZone | AC ✓ | 190ms | 11796kb | C++23 | 2.8kb | 2024-11-02 12:57:17 | 2024-11-02 12:57:56 |
Judging History
answer
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,sse4,popcnt,abm,mmx,avx,avx2")
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
#define ll long long
#define ull unsigned long long
//#define int long long
#define SZ(x) ((int)((x).size()))
#define ALL(x) (x).begin(),(x).end()
using namespace std;
inline int read()
{
char c=getchar();int x=0;bool f=0;
for(;!isdigit(c);c=getchar())f^=!(c^45);
for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
return f?-x:x;
}
#define mod 998244353
struct modint{
unsigned int x;
modint(int o=0){x=o;}
modint &operator = (int o){return x=o,*this;}
modint &operator +=(modint o){return x=x+o.x>=mod?x+o.x-mod:x+o.x,*this;}
modint &operator -=(modint o){return x=x<o.x?x-o.x+mod:x-o.x,*this;}
modint &operator *=(modint o){return x=1ll*x*o.x%mod,*this;}
modint &operator ^=(int b){
modint a=*this,c=1;
for(;b;b>>=1,a*=a)if(b&1)c*=a;
return x=c.x,*this;
}
modint &operator /=(modint o){return *this *=o^=mod-2;}
friend modint operator +(modint a,modint b){return a+=b;}
friend modint operator -(modint a,modint b){return a-=b;}
friend modint operator *(modint a,modint b){return a*=b;}
friend modint operator /(modint a,modint b){return a/=b;}
friend modint operator ^(modint a,int b){return a^=b;}
friend bool operator ==(modint a,modint b){return a.x==b.x;}
friend bool operator !=(modint a,modint b){return a.x!=b.x;}
bool operator ! () {return !x;}
modint operator - () {return x?mod-x:0;}
bool operator <(const modint&b)const{return x<b.x;}
};
inline modint qpow(modint x,int y){return x^y;}
vector<modint> fac,ifac,iv;
inline void initC(int n)
{
if(iv.empty())fac=ifac=iv=vector<modint>(2,1);
int m=iv.size(); ++n;
if(m>=n)return;
iv.resize(n),fac.resize(n),ifac.resize(n);
For(i,m,n-1){
iv[i]=iv[mod%i]*(mod-mod/i);
fac[i]=fac[i-1]*i,ifac[i]=ifac[i-1]*iv[i];
}
}
inline modint C(int n,int m){
if(m<0||n<m)return 0;
return initC(n),fac[n]*ifac[m]*ifac[n-m];
}
inline modint sign(int n){return (n&1)?(mod-1):(1);}
#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;
#define maxn 200005
#define inf 0x3f3f3f3f
int n;
char s[maxn];
modint f[2][1005][505][2];
signed main()
{
n=read(); scanf("%s",s+1);
reverse(s+1,s+n+1);
f[0][n][0][0]=1;
int o=0;
For(i,1,n){
o^=1;
For(j,-n,n) For(k,0,n) For(l,0,1){
if(f[!o][j+n][k][l].x){
modint val; swap(val,f[!o][j+n][k][l]);
if(s[i]!='1') f[o][j+n+1][k+1][0]+=val;
if(s[i]!='0'){
if(!l && j-3+n>=0 && k-3>=-1)
f[o][j-3+n][max(k-3,0)][1]+=val;
}
}
}
}
modint res=0;
For(i,0,n) res+=f[o][n][i][0];
cout<<res.x;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 11712kb
input:
8 0??0?100
output:
2
result:
ok "2"
Test #2:
score: 0
Accepted
time: 5ms
memory: 11728kb
input:
4 ?10?
output:
1
result:
ok "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 11712kb
input:
28 ???????????0???0??????1???0?
output:
2023
result:
ok "2023"
Test #4:
score: 0
Accepted
time: 5ms
memory: 11580kb
input:
4 ????
output:
1
result:
ok "1"
Test #5:
score: 0
Accepted
time: 2ms
memory: 11524kb
input:
8 11111111
output:
0
result:
ok "0"
Test #6:
score: 0
Accepted
time: 170ms
memory: 11532kb
input:
500 ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...
output:
870731023
result:
ok "870731023"
Test #7:
score: 0
Accepted
time: 180ms
memory: 11716kb
input:
500 ???????????????????0???????????????????????????????????????0??????????????????????1???????????????????????????????????????00????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????1???????????????????????????????????...
output:
763641704
result:
ok "763641704"
Test #8:
score: 0
Accepted
time: 69ms
memory: 11776kb
input:
344 ?0???????????1???????0?0?????0?????????????0?0????0?0??1??0?????0??0???1?????0????00?????1?????1????????1?????10????0??????????1????0???1????????0???10?????1?0?0???1??????????0??0???1?0??00??0???????001????????1????1??????1?0????1??????????????????1????1????????????0???????????01?1??????0?0?????...
output:
273835616
result:
ok "273835616"
Test #9:
score: 0
Accepted
time: 10ms
memory: 11716kb
input:
152 ?1???1??????????????????00??????????0?????0????????0??1?????0????0????????0????010???????????????1??1??????0?10??1????0???????????????1?????0???1???????
output:
539361138
result:
ok "539361138"
Test #10:
score: 0
Accepted
time: 21ms
memory: 11776kb
input:
216 ???????1?????1??1????1???1?????????????0?1???????????????????????????????????????????????1?????????????????10???0???1???????????????????????1????????????0???????0??????0?????????1???????????????????????1?????????0???
output:
336079328
result:
ok "336079328"
Test #11:
score: 0
Accepted
time: 50ms
memory: 11772kb
input:
316 ??????00?????????????????????1??????????????????0?????????????????0??0??????0???1??1?????????0??????????????????????0?????????0?0?1??0?????1?1??????1?1?????????????????????????????????0??????????????????????10???????1???????????1?????????????1????1????????????0????????????????1????1???0??0??1???...
output:
919261244
result:
ok "919261244"
Test #12:
score: 0
Accepted
time: 65ms
memory: 11656kb
input:
340 ?0?001??1?0????1?????1???01?????????1??01??0???1???1?????????????0?1??????1??1?10??0????????10?????1????1?010???1?????????????1???????1????01???????1???????00???1?0?00??0????????00???0??????1??1?1?????10??1????0??1????1????0????????0????0??????00?0??00???1??001????????0?1?????????????????0???1??...
output:
743485908
result:
ok "743485908"
Test #13:
score: 0
Accepted
time: 93ms
memory: 11712kb
input:
392 ??????0??????????10???????????????????????1????????1???????0???????????0??????????????101???????????????????????0??????????0??0??????????1?????1???????????????????1?0?????????????1???????????????????????1????????0???0?????1????????????????0??????1?????????????0????????????????0?????????????????1...
output:
213859453
result:
ok "213859453"
Test #14:
score: 0
Accepted
time: 3ms
memory: 11532kb
input:
96 ????????0??1??1??????????????????????????1?0?????0??????1?????????1?0?????00??????????1???1?????
output:
860127276
result:
ok "860127276"
Test #15:
score: 0
Accepted
time: 7ms
memory: 11576kb
input:
116 ???????????????????????????????01?1???????????????0?00????0?????????????????1?0?????????????????1???????????????00??
output:
717954632
result:
ok "717954632"
Test #16:
score: 0
Accepted
time: 40ms
memory: 11652kb
input:
280 ?????1????0??0??????1????????0????0?1?0????????00???0???????0????0???????????1?0?1???????????1?????10????1??????100??????????1?1?????01?1??????0????01??1???1?????0????????0?1?0???????????01??00??????1?????????????????1?1?????????1????????????????0????????????????????????0????????
output:
553679844
result:
ok "553679844"
Test #17:
score: 0
Accepted
time: 33ms
memory: 11732kb
input:
260 ????????0????0???????????????1???????0?00??0???????????????0??????0?????1?????????????????????????????????????0???????1????????0??????????????????????1???????????????????1?0????1???????00?0????10???????????0?1?10??????????????????0??0???????1???????1??1???????
output:
121486637
result:
ok "121486637"
Test #18:
score: 0
Accepted
time: 190ms
memory: 11768kb
input:
500 ??0????1???1??????1?1??????????????????????????????????0??0??????????????????????1???????01????????0???0???????????????????????1????????1??????????????1????????0?1???0?????0???????????????????0??????????????1????????0???????0?0??????????????0???????1???????1??????????????????????????0????0??????...
output:
397451125
result:
ok "397451125"
Test #19:
score: 0
Accepted
time: 187ms
memory: 11792kb
input:
500 ??????1???????????????????0????????????????????????0??????0???????????1??????????10???0???0?????????????1??1????????0??????1???????????00????????????0???????????????????1??0???0????0?????????????0?????????????????????????????????????0????0??????????1??????????????????????????????????????????????...
output:
248838567
result:
ok "248838567"
Test #20:
score: 0
Accepted
time: 189ms
memory: 11772kb
input:
500 ?0??0????1???????????????????????????1????????????????????0????????1????????????????1????0?????????????1???????????1?0????????????????????0?????????????0????0????????????1????????1????????????????0???0?1???1???1???????????1?????1???0??????????1????????1?????1???0?1???????????1???????????????????...
output:
53824210
result:
ok "53824210"
Test #21:
score: 0
Accepted
time: 6ms
memory: 11784kb
input:
76 ????0????????0??0???1??0??????00?0????0???1??????1?0????0?1?????????????1???
output:
205686585
result:
ok "205686585"
Test #22:
score: 0
Accepted
time: 5ms
memory: 11716kb
input:
24 ?0?0?????0??????????????
output:
587
result:
ok "587"
Test #23:
score: 0
Accepted
time: 5ms
memory: 11576kb
input:
76 ?????0?????????????????0????????????????????????????1???0???????????????????
output:
83575746
result:
ok "83575746"
Test #24:
score: 0
Accepted
time: 4ms
memory: 11760kb
input:
28 00???0???0?0??0???0???0?????
output:
859
result:
ok "859"
Test #25:
score: 0
Accepted
time: 0ms
memory: 11524kb
input:
44 ?00??1???00??1???0??1?100??1?0???0??1???0???
output:
63
result:
ok "63"
Test #26:
score: 0
Accepted
time: 135ms
memory: 11732kb
input:
444 ???0???0???????????????1?????1??????0?????1??????1??????????10?1???????????????????????????????1?1??00?0??0????0??????????1???????101?0????10??????????????0?0???????1???????????????1????????0?????????1????????????1???0??????????????????????????0??????1??????????0???10??1???????????01????????????...
output:
847293915
result:
ok "847293915"
Test #27:
score: 0
Accepted
time: 165ms
memory: 11656kb
input:
484 ?????1?1???????????1?????1??????????0?1???????????1?????0?1???0000?1?1?0?00????1????0?0?00?????????????????????1????????1?01??????01??1?????0??????0???000?????????1????????0?1??01?????0???1???0?????1???0???????0?????1?1?0??0???????01????????0???1???0??0???0?????????????????1??????1???10??1010???...
output:
679474848
result:
ok "679474848"
Test #28:
score: 0
Accepted
time: 142ms
memory: 11796kb
input:
456 ?????0???????????????0?????1???????0???1??????????????????1??????1?????????????1??????1??????????0??????????????1????????????????????1??????????1???0???0??1???1????????00??0?????1???0?????????????1?0??1??1?1???0???1????????????0???????????????0?0??0?????0????????01?????????????????????????????10...
output:
920943116
result:
ok "920943116"
Test #29:
score: 0
Accepted
time: 158ms
memory: 11720kb
input:
484 ????????????????????????????????0????1???1???????1????????1?????????0?????1??1??????????????????????1???????01???????????????????1??1???????????????1?1?0?0??1????????1??1???????????????????????????0?????????????0?????????????1????0??????1?????????0?0??????????1????????????1??????????????????????...
output:
453361220
result:
ok "453361220"
Test #30:
score: 0
Accepted
time: 127ms
memory: 11668kb
input:
448 ?1?01??1????01?10????1???0????????????10????0??????1????1??????1?????1?0??1????101?1????1??????????????0?????1???0???????01?0?1?1????1???1?01?????????????0?1???1???01????0???????????????1??????01?1??????1?1?1??0???0?????????1????????1??1?0?1?0???????????????1?????1???0?0?????0????0??0???????????...
output:
84175678
result:
ok "84175678"
Test #31:
score: 0
Accepted
time: 160ms
memory: 11584kb
input:
480 ?0?????????????????????0???00???1???0?????1?????????1??????????1?????1????????0??????????1????0???10?????????1????1????0?????0???01??????????0?????0???0?????????0???????01??????????????0????????0?????1????1?0??0?0????????????????1???1??01????????????1????0??????0??????1??1???????????????????????...
output:
247404334
result:
ok "247404334"
Test #32:
score: 0
Accepted
time: 170ms
memory: 11728kb
input:
492 ??????00??????0??0??????????1???1?1?010????????????????????00???1???0?????0???????1?????????0???????1?????????????1???10???0?????????????????0??????????????0??????1???0????0?0???0??100?0?????????1??1????1???????????1????1??0?????????00??????1??1??????1????01?1?0??????0???????1????????????1??0???...
output:
487405442
result:
ok "487405442"
Test #33:
score: 0
Accepted
time: 138ms
memory: 11532kb
input:
456 ????1???????????1???1????0????????????????????????????????????1???????0?????1???1?1??????????????????????????1?????????1?00??????????10?0????????????1??????????1?0????????1?1?????????????????0??????0???????1???????????????????????????0????????0??????1??????????0??1???????????????????????????????...
output:
884555628
result:
ok "884555628"
Test #34:
score: 0
Accepted
time: 148ms
memory: 11712kb
input:
460 ??????1????1??????????0??0?????????????????0?????0???????????1?????????????1???????????01???????0????????????0???0???????????????????????????1???0????0??????????0??0??????1????0???????????????01?????????????0???????????????????????????????1????0????0????1??????1???????1???0??????????????????????...
output:
244536851
result:
ok "244536851"
Test #35:
score: 0
Accepted
time: 144ms
memory: 11536kb
input:
456 ???????1?1????????????????00??????????1??1?0???????0??????0??????????0??1?????0??1???0?1??1?1?1???00?10?0???01??????????????0???01?0??000?1????1????????0????1?1????1???01???0?????1?0??????????1???0???1?1??????????01???1?????0???????0?1????1???1?0??0????1????0?0??1????????????0???0?????0??????01?...
output:
890392505
result:
ok "890392505"
Extra Test:
score: 0
Extra Test Passed