QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#670161#9464. 基础 01? 练习题WrongAnswer_9045 1891ms40640kbC++2310.5kb2024-10-23 20:42:112024-10-23 20:42:11

Judging History

你现在查看的是最新测评结果

  • [2024-10-23 20:42:11]
  • 评测
  • 测评结果:45
  • 用时:1891ms
  • 内存:40640kb
  • [2024-10-23 20:42:11]
  • 提交

answer

#include<bits/stdc++.h>
#define ull unsigned long long
#define ui unsigned int
#define ld long double
#define ll long long
#define lll __int128
#define fi first
#define se second
#define e emplace
#define eb emplace_back
#define db double
#define ef emplace_front
#define pii pair<int,int>
#define pll pair<ll,ll>
#define vi vector<int>
#define vp vector<pii>
#define vt vector<tup>
#define all(x) x.begin(),x.end()
#define mp make_pair

#define FastI
#define FastO
//#define int ll
bool ST;
static const ll MOD=998244353,Phi=998244352,inv2=499122177,Root=3,iRoot=332748118;
static const ll inf=1073741823,Inf=4294967296,INF=4557430888798830399;
static const ld eps=1e-9,pi=3.1415926535;
char in[1<<20],*p1=in,*p2=in;
char out[1<<20],*p3=out;
using namespace std;
struct tup
{
	int x,y,z;
	tup(int X=0,int Y=0,int Z=0)
	{x=X,y=Y,z=Z;}
};
#ifdef FastI
#define getchar() (p1==p2&&(p2=(p1=in)+fread(in,1,1<<20,stdin),p1==p2)?EOF:*p1++)
#endif
#ifdef FastO
#define putchar(x) (p3-out==1<<20?fwrite(out,1,1<<20,stdout),p3=out,0:0,*p3++=x)
#define puts(x) write(x,'\n')
#endif
namespace FastIO
{
	template<typename T> inline void write(T x,char ch=' ')
	{
		if(is_same<char,T>::value)putchar(x);
		else
		{
			if(x<0)x=-x,putchar('-');
			static char st[25];
			int top=0;
			do st[top++]=x%10+'0',x/=10;while(x);
			while(top)putchar(st[--top]);
		}
		ch!='~'?putchar(ch):0;
	}
	inline void write(const char*x,char ch=' ')
	{
		for(int i=0;x[i]!='\0';++i)putchar(x[i]);
		ch!='~'?putchar(ch):0;
	}
	inline void read(char&s){do s=getchar();while(s=='\n'||s==' ');}
	inline void read(char s[])
	{
		int len=0;char st;
		do st=getchar();while(st=='\n'||st==' ');
		s[++len]=st,st=getchar();
		while(st!='\n'&&st!=' '&&st!='\r')s[++len]=st,st=getchar();
		s[++len]='\0';
	}
	template<typename T> inline void read(T &s)
	{
		char ch=getchar();s=0;
		while((ch>'9'||ch<'0')&&ch!='-')ch=getchar();
		bool tf=(ch=='-'&&(ch=getchar()));
		while(ch>='0'&&ch<='9')s=(s<<1)+(s<<3)+ch-'0',ch=getchar();
		s=tf?-s:s;
	}
	inline void edl(){putchar('\n');}
	template<typename T1,typename T2> inline void read(pair<T1,T2> &s){read(s.fi),read(s.se);}
	template<typename T,typename...Args> inline void write(T x,Args...args){write(x,'~'),write(args...);}
	template<typename T,typename...Args> inline void read(T&x,Args&...args){read(x),read(args...);}
	#ifdef FastO
	struct Writer{~Writer(){fwrite(out,1,p3-out,stdout);}}Writ;
	#endif
}
using namespace FastIO;
namespace MTool
{
	inline int Cadd(int a,int b){return (ll)a+b>=MOD?(ll)a+b-MOD:a+b;}
	inline int Cdel(int a,int b){return a-b<0?a-b+MOD:a-b;}
	inline int Cmul(int a,int b){return 1ll*a*b%MOD;}
	inline int sqr(int a){return 1ll*a*a%MOD;}
	inline void Madd(int&a,int b){a=((ll)a+b>=MOD?(ll)a+b-MOD:a+b);}
	inline void Mdel(int&a,int b){a=(a-b<0?a-b+MOD:a-b);}
	inline void Mmul(int&a,int b){a=1ll*a*b%MOD;}
	inline int Cmod(int x){return (x%MOD+MOD)%MOD;}
	inline void Mmod(int&x){x=(x%MOD+MOD)%MOD;}
	template<typename T> inline bool Mmax(T&a,T b){return a<b?a=b,1:0;}
	template<typename T> inline bool Mmin(T&a,T b){return a>b?a=b,1:0;}
	template<typename...Args> inline void Madd(int&a,int b,Args...args){Madd(a,b),Madd(a,args...);}
	template<typename...Args> inline void Mmul(int&a,int b,Args...args){Mmul(a,b),Mmul(a,args...);}
	template<typename...Args> inline void Mdel(int&a,int b,Args...args){Mdel(a,b),Mdel(a,args...);}
	template<typename...Args> inline int Cadd(int a,int b,Args...args){return Cadd(Cadd(a,b),args...);}
	template<typename...Args> inline int Cmul(int a,int b,Args...args){return Cmul(Cmul(a,b),args...);}
	template<typename...Args> inline int Cdel(int a,int b,Args...args){return Cdel(Cdel(a,b),args...);}
	template<typename...Args,typename T> inline bool Mmax(T&a,T b,Args...args){return Mmax(a,b)|Mmax(a,args...);}
	template<typename...Args,typename T> inline bool Mmin(T&a,T b,Args...args){return Mmin(a,b)|Mmin(a,args...);}
	inline int power(int x,int y){int s=1;for(;y;y>>=1,Mmul(x,x))if(y&1)Mmul(s,x);return s;}
}
using namespace MTool;
namespace WrongAnswer_90
{
	const int N=50010; 
	template<class Info,class Tag> struct Segment
	{
	    #define ls(p) (t[p].l+t[p].r)
	    #define rs(p) (ls(p)^1)
	    private:
	        vector<Info> tmp;
	        struct{int l,r;Info v;Tag tg;}t[N<<1];
	        inline void down(int p,Tag tg){t[p].v=t[p].v*tg,t[p].tg=t[p].tg*tg;}
	        inline void spread(int p){down(ls(p),t[p].tg),down(rs(p),t[p].tg),t[p].tg=Tag();}
	        void build(int p,int l,int r)
	        {
	            t[p].l=l,t[p].r=r;
	            if(l==r)return t[p].v=tmp[l-1],void();
	            int mid=l+((r-l)>>1);
	            build(ls(p),l,mid),build(rs(p),mid+1,r);
	            t[p].v=t[ls(p)].v+t[rs(p)].v;
	        }
	        void change(int p,int x,Info v)
	        {
	            if(t[p].l==t[p].r)return t[p].v=v,void();
	            spread(p);
	            change(ls(p)^(x>t[ls(p)].r),x,v);
	            t[p].v=t[ls(p)].v+t[rs(p)].v;
	        }
	        Info ask(int p,int l,int r)
	        {
	            if(l<=t[p].l&&r>=t[p].r)return t[p].v;
	            spread(p);
	            if(r<=t[ls(p)].r)return ask(ls(p),l,r);
	            if(l>t[ls(p)].r)return ask(rs(p),l,r);
	            return ask(ls(p),l,r)+ask(rs(p),l,r);
	        }
	        void modify(int p,int l,int r,Tag tg)
	        {
	            if(l<=t[p].l&&r>=t[p].r)return down(p,tg);
	            spread(p);
	            if(l<=t[ls(p)].r)modify(ls(p),l,r,tg);
	            if(r>t[ls(p)].r)modify(rs(p),l,r,tg);
	            t[p].v=t[ls(p)].v+t[rs(p)].v;
	        }
	        template<class Compare> pair<int,Info>
	        findnex(int p,int x,Info y,Compare cmp)
	        {
	            if(x>t[p].r||!cmp(y,t[p].v))return mp(0,(Info){});
	            if(t[p].l==t[p].r)return mp(t[p].l,t[p].v);
	            spread(p);
	            pair<int,Info> v=findnex(ls(p),x,y,cmp);
	            if(v.fi)return v;
	            return findnex(rs(p),x,y,cmp);
	        }
	        template<class Compare> pair<int,Info>
	        findpre(int p,int x,Info y,Compare cmp)
	        {
	            if(x<t[p].l||!cmp(y,t[p].v))return mp(0,(Info){});
	            if(t[p].l==t[p].r)return mp(t[p].l,t[p].v);
	            spread(p);
	            pair<int,Info> v=findpre(rs(p),x,y,cmp);
	            if(v.fi)return v;
	            return findpre(ls(p),x,y,cmp);
	        }
	    public:
	        void print(int p=1)
	        {
	            if(t[p].l==t[p].r)return t[p].v.print();
	            spread(p),print(ls(p)),print(rs(p));
	        }
	        void printall(int p=1)
	        {
	            write('[',t[p].l,',',t[p].r,']',':');
	            t[p].v.print();
	            spread(p),print(ls(p)),print(rs(p));
	        }
	        void modify(int l,int r,Tag tg){modify(1,l,r,tg);}
	        template<class Compare> pair<int,Info>
	        findnex(int x,Info y,Compare cmp)
	        {return findnex(1,x,y,cmp);}
	        template<class Compare> pair<int,Info>
	        findpre(int x,Info y,Compare cmp)
	        {return findpre(1,x,y,cmp);}
	        void change(int x,Info v){change(1,x,v);}
	        Info ask(int l,int r){return ask(1,l,r);}
	        void init(vector<Info> ve){tmp=ve,build(1,1,ve.size());}
	    #undef ls
	    #undef rs
	};
	struct Tag
	{
		int f[3][3];
	    Tag(int v=0,int vv=0){f[0][0]=f[1][1]=f[2][2]=1,f[0][1]=v,f[1][2]=vv;}
	    Tag operator *(const Tag nd)const
	    {
	        Tag v;memset(v.f,0,sizeof(v.f));
	        for(int i=0;i<3;++i)for(int j=0;j<3;++j)for(int k=i;k<=j;++k)
	        Madd(v.f[i][j],Cmul(f[i][k],nd.f[k][j]));
	        return v;
	    }
	};
	struct Node
	{
		int f[3];
	    Node(int x=0){f[0]=x,f[1]=f[2]=0;}
	    Node operator +(const Node nd)const
	    {
	    	Node v;
	    	for(int i=0;i<3;++i)v.f[i]=Cadd(f[i],nd.f[i]);
	        return v;
	    }
	    Node operator *(const Tag nd)const
	    {
	        Node v;
	        for(int i=0;i<3;++i)for(int j=i;j<3;++j)
	        Madd(v.f[j],Cmul(f[i],nd.f[i][j]));
	        return v;
	    }
	    void print()
	    {
	    	cerr<<"("<<f[0]<<","<<f[1]<<","<<f[2]<<")";
	    }
	};
	int n,m;
	char s[50010];
	int pre[50010];
	int F[16][50010][2],G[16][50010][2];
	vt ve[50010];
	vp qu[50010];
	int pw[50010],ipw[50010];
	int ans[200010];
	void modify(int l1,int r1,int l2,int r2,int v)
	{
		if(l1>r1||l2>r2)return;
		cerr<<l1<<" "<<r1<<" "<<l2<<" "<<r2<<" "<<v<<endl;
		ve[l2].eb(tup(l1,r1,v));
		ve[r2+1].eb(tup(l1,r1,MOD-v));
	}
	void mian()
	{
		pw[0]=ipw[0]=1;
		for(int i=1;i<=50000;++i)
		{
			pw[i]=Cmul(pw[i-1],2);
			ipw[i]=Cmul(ipw[i-1],inv2);
		}
		
		read(n,m);
		read(s);
		for(int i=1;i<=n;++i)pre[i]=pre[i-1]+(s[i]=='?');
		for(int i=1;i<=n;++i)
		{
			G[0][i][0]=i+(s[i]=='1'),G[0][i][1]=i+(s[i]=='0');
			F[0][i][0]=i-(s[i]=='1'),F[0][i][1]=i-(s[i]=='0');
		}
		for(int i=0;i<16;++i)
		{
			G[i][0][0]=G[i][0][1]=1;
			F[i][n+1][0]=F[i][n+1][1]=n;
		}
		for(int i=1;i<16;++i)
		{
			for(int j=1;j<=n;++j)
			{
				int r=j+(1<<(i-1)),l=j-(1<<(i-1));
				for(int x=0;x<2;++x)
				{
					F[i][j][x]=(F[i-1][j][x]==r-1?F[i-1][r][x^1]:F[i-1][j][x]);
					G[i][j][x]=(G[i-1][j][x]==l+1?G[i-1][l][x^1]:G[i-1][j][x]);
				}
			}
		}
		for(int i=1;i<n;++i)
		{
			for(int x=0;x<2;++x)for(int y=0;y<2;++y)
			modify(G[15][i][x],i,i+1,F[15][i+1][y],1);
		}
		for(int i=0;i<16;++i)
		{
			for(int j=2;j+(1<<i)<=n;++j)
			{
				int l=j-1,r=j+(1<<i);
				for(int x=0;x<2;++x)
				{
					if(F[i][j][x]==j+(1<<i)-1)
					modify(G[i][l][x^1^(i&1)],l,r,F[i][r][x^1],MOD-1);
				}
			}
		}
		
		int x,y;
		for(int i=1;i<=m;++i)
		{
			read(x,y); 
			++x,++y;
			qu[y].eb(mp(x,i));
			int tmp=pre[y]-pre[x-1];
			Madd(ans[i],Cmul(y-x+1,pw[tmp]));
		}
		
		Segment<Node,Tag> sgt;
		vector<Node> VE;
		sgt.init(vector<Node>(n));
		
		for(int i=1;i<=n;++i)
		{
			sgt.change(i,Node(pw[pre[i-1]]));
			for(auto [x,y,z]:ve[i])
			sgt.modify(x,y,Tag(z));
			sgt.modify(1,n,Tag(0,ipw[pre[i]]));
			for(auto [x,y]:qu[i])
			Madd(ans[y],Cmul(pw[pre[i]],sgt.ask(x,n).f[2],ipw[pre[x-1]]));
//			sgt.print();
//			cerr<<endl;
//			for(int j=1;j<=n;++j)cerr<<"("<<g[j][0]<<","<<g[j][1]<<","<<g[j][2]<<")";
//			cerr<<endl;
		}
		for(int i=1;i<=m;++i)write(ans[i],'\n');
	}
	inline void Mian()
	{
		int T=1;
//		read(T);
		while(T--)mian();
	}
}
bool ED;
signed main()
{
//	ios::sync_with_stdio(0);
//	freopen("1.in","r",stdin);
//	freopen("1.out","w",stdout);
	double st=clock();
	WrongAnswer_90::Mian();
	double ed=clock();
 	cerr<<endl;
 	cerr<<"Time: "<<ed-st<<" ms\n";
 	cerr<<"Memory: "<<abs(&ST-&ED)/1024.0/1024.0<<" MB\n";
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 0ms
memory: 25780kb

input:

15 15
0???0??01???1??
2 14
0 9
6 10
1 14
1 14
0 12
5 14
6 7
0 6
4 14
1 12
10 10
0 14
1 12
4 7

output:

25883
2344
112
56425
56425
12963
4531
6
666
5212
11875
2
60786
11875
37

result:

ok 15 numbers

Test #2:

score: 10
Accepted
time: 0ms
memory: 26084kb

input:

15 15
011?1?0101??110
0 11
2 10
0 13
2 12
3 5
2 12
3 5
12 13
1 14
1 5
8 13
9 12
2 10
0 11
7 8

output:

803
285
952
732
23
732
23
3
940
48
69
37
285
803
3

result:

ok 15 numbers

Test #3:

score: 10
Accepted
time: 0ms
memory: 26152kb

input:

15 15
100110?1010?01?
9 9
6 11
1 4
0 13
7 7
9 13
3 14
0 0
0 13
0 12
0 10
6 11
4 8
3 13
0 13

output:

1
77
10
265
1
25
384
1
265
251
109
77
30
175
265

result:

ok 15 numbers

Test #4:

score: 10
Accepted
time: 0ms
memory: 24184kb

input:

15 15
??????0?0??????
8 10
0 14
9 12
2 13
1 6
7 12
0 13
6 14
0 11
0 14
4 14
5 14
0 8
4 5
1 13

output:

23
439848
146
41764
540
540
202272
3703
41802
439848
18776
8386
3703
12
92312

result:

ok 15 numbers

Test #5:

score: 10
Accepted
time: 0ms
memory: 24156kb

input:

15 15
?1??0?0??010?1?
3 14
4 5
0 14
0 13
4 8
12 13
1 5
5 8
11 13
3 3
1 12
0 2
5 14
11 12
4 12

output:

3128
6
15531
6994
99
6
101
73
12
2
2842
23
1305
6
522

result:

ok 15 numbers

Test #6:

score: 10
Accepted
time: 0ms
memory: 24068kb

input:

15 15
10????1001?11?1
0 14
0 5
0 14
5 13
4 9
10 14
6 13
0 14
1 9
0 13
6 13
1 11
1 13
9 13
4 5

output:

4184
279
4184
276
78
46
109
4184
531
3878
109
1446
3516
46
12

result:

ok 15 numbers

Subtask #2:

score: 10
Accepted

Test #7:

score: 10
Accepted
time: 60ms
memory: 26956kb

input:

20 200000
???10?10???????1????
1 19
2 17
5 19
6 19
6 15
5 19
1 11
0 15
4 6
3 16
10 13
12 18
16 16
0 15
7 14
2 11
14 19
9 16
0 18
11 16
7 13
1 17
5 18
7 7
6 10
4 17
5 19
2 9
0 16
1 19
5 14
4 19
0 11
0 16
15 19
0 12
1 15
4 17
13 16
3 14
4 13
5 13
3 10
0 19
2 17
6 18
0 18
7 10
3 18
10 14
1 13
0 16
0 19...

output:

1336712
138392
234942
106457
4426
234942
5914
141418
12
28991
146
1346
2
141418
3235
2622
540
3235
1346550
540
1346
298458
108555
1
107
55692
234942
504
300854
1336712
9100
258457
13090
300854
206
28541
65634
55692
73
12242
4720
3994
479
2835916
138392
48773
1346550
73
133840
412
28291
300854
283591...

result:

ok 200000 numbers

Test #8:

score: 10
Accepted
time: 70ms
memory: 28960kb

input:

20 200000
?10???1101001101??11
2 17
8 16
0 15
1 17
11 13
1 6
2 13
5 19
2 4
1 8
1 6
0 2
4 8
2 5
0 13
1 14
11 15
16 18
14 15
4 19
0 17
9 19
8 13
0 3
0 7
8 19
4 19
17 17
12 15
2 8
0 19
4 19
1 19
13 17
0 10
0 19
19 19
4 11
0 19
0 19
0 16
1 16
6 6
1 14
12 14
7 13
1 2
2 16
2 5
3 18
0 16
6 16
4 8
12 17
8 9...

output:

2760
82
1396
2948
6
141
463
636
23
209
141
12
51
73
1115
593
15
23
3
1380
6288
198
21
40
427
226
1380
2
10
168
6960
1380
3284
56
702
6960
1
123
6960
6960
2984
1394
1
593
6
28
3
1300
73
2780
2984
116
51
75
3
136
636
2944
226
1380
1300
6288
6960
141
602
175
35
23
2932
38
1396
3
29
12
294
593
6656
184
...

result:

ok 200000 numbers

Test #9:

score: 10
Accepted
time: 63ms
memory: 29300kb

input:

20 200000
01101010101?001?011?
2 8
8 19
2 16
11 17
0 16
7 19
3 11
0 14
16 18
4 9
6 19
4 17
6 12
7 10
2 19
6 17
0 12
1 19
0 19
3 8
0 18
2 14
1 19
10 14
2 19
9 19
2 15
13 14
3 15
9 13
12 19
12 14
1 12
6 6
13 15
0 15
10 18
0 19
0 19
8 17
0 18
0 13
7 11
4 5
1 19
1 18
1 17
7 12
0 16
1 19
1 10
10 18
1 2
3...

output:

22
406
247
96
291
460
61
122
6
18
492
242
48
10
620
210
102
660
708
18
338
100
660
26
620
352
224
3
208
27
116
6
90
1
12
268
136
708
708
167
338
111
29
3
660
314
294
40
291
660
35
136
3
18
230
167
708
18
352
1
18
21
141
25
226
12
20
72
12
708
26
1
210
10
99
50
274
29
708
274
33
50
588
73
167
192
708...

result:

ok 200000 numbers

Test #10:

score: 10
Accepted
time: 65ms
memory: 27252kb

input:

20 200000
????????0?????0?????
0 19
1 19
4 17
9 12
3 12
0 18
1 12
6 7
1 9
8 11
4 19
1 5
0 19
19 19
5 15
1 9
0 5
2 18
12 17
3 7
2 2
0 18
8 18
10 15
8 13
15 16
9 14
2 19
9 17
12 16
3 6
0 9
2 9
1 15
4 18
9 18
5 8
2 8
4 13
2 16
12 17
0 16
5 16
9 19
1 19
3 11
13 18
2 16
1 15
6 19
0 10
6 12
1 4
14 17
2 19...

output:

20336544
9597862
210735
146
17346
9597284
87146
12
7568
73
985734
412
20336544
2
19633
7568
1080
2114106
540
412
2
9597284
19606
540
540
12
540
4513692
7568
206
146
17346
3235
456646
457188
17346
73
1346
17346
456984
540
2113112
43751
39128
9597862
7568
540
456984
456646
210668
39128
1346
146
73
451...

result:

ok 200000 numbers

Test #11:

score: 10
Accepted
time: 65ms
memory: 27136kb

input:

20 200000
??10?1011?01????????
11 13
0 1
0 19
0 16
6 10
7 19
1 4
2 16
7 19
8 14
3 14
15 17
5 18
14 19
5 11
1 19
10 18
4 18
14 17
1 19
2 18
0 19
11 18
16 19
0 12
1 4
10 15
11 14
13 15
3 11
1 12
7 10
7 13
10 13
7 18
12 15
15 18
10 19
9 14
3 15
6 18
13 16
1 19
7 11
4 18
2 12
6 14
2 17
2 18
7 13
4 6
7 1...

output:

23
12
388332
41750
26
25671
40
8695
25671
378
1640
46
14667
1080
47
182132
3869
32150
146
182132
39318
388332
3235
146
1986
40
279
73
46
140
900
18
187
38
11717
146
146
8845
292
3576
13131
146
182132
27
32150
389
534
18527
39318
187
12
11717
86572
8695
900
140
12
2718
3101
35478
16608
388332
898
12
...

result:

ok 200000 numbers

Test #12:

score: 10
Accepted
time: 63ms
memory: 27232kb

input:

20 200000
?1??111??0?1??1?0100
17 19
12 15
9 10
0 18
15 19
3 11
2 19
0 2
4 13
4 13
1 15
0 19
0 19
5 8
5 9
4 16
0 19
5 8
2 9
17 17
10 15
3 13
2 16
5 17
0 18
11 19
0 17
3 18
12 16
0 19
13 17
6 18
5 9
0 16
0 2
2 9
4 18
2 17
0 19
4 18
0 3
5 12
0 19
0 8
7 16
4 7
0 17
14 18
0 13
0 17
5 18
4 10
1 12
0 18
1...

output:

6
73
6
37608
29
402
18272
23
1023
1023
13068
40576
40576
35
49
2995
40576
35
320
1
278
2206
13452
3263
37608
284
34104
7978
107
40576
57
3460
49
30936
23
320
3829
15036
40576
3829
73
405
40576
780
2365
15
34104
30
11672
34104
3701
144
2356
37608
2
380
106
2531
37608
2365
40576
15036
5
2
28248
13452
...

result:

ok 200000 numbers

Subtask #3:

score: 0
Time Limit Exceeded

Test #13:

score: 5
Accepted
time: 879ms
memory: 34748kb

input:

50000 200000
011001101001011?10011001011010010110011010011001011?011010010110?0011001011001101?011?010?10100101100110100110010110011?1001011010011001011?10010?1?0?10100101101?01100101100110100110010110?001011001101001100101100?10100101101?0110?10110011010011001011010010110011010010110100110?10110100...

output:

15
21
66
21
6
78
38
105
105
61
28
10
141
187
42
111
45
3
45
151
10
15
6
28
28
18
45
102
10
105
21
45
3
66
120
105
91
1
78
66
10
105
6
6
170
45
162
6
28
105
105
6
45
6
36
91
173
343
74
78
40
45
1
120
78
120
45
21
66
71
45
170
10
55
3
3
82
1
1
6
132
45
28
105
10
1
105
105
2
12
15
78
3
51
78
36
1
45
12...

result:

ok 200000 numbers

Test #14:

score: 0
Time Limit Exceeded

input:

50000 200000
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:


result:


Subtask #4:

score: 5
Accepted

Test #19:

score: 5
Accepted
time: 524ms
memory: 30440kb

input:

50000 1
0101101001100101100110100110010110100101100110100110010110011010010110100110010110011010011001011010010110011010010110100110010110100101100110100110010110011010010110100110010110011010011001011010010110011010011001011001101001011010011001011010010110011010010110100110010110011010011001011010...

output:

132414834

result:

ok 1 number(s): "132414834"

Test #20:

score: 5
Accepted
time: 522ms
memory: 30464kb

input:

50000 1
1001011001101001100101101001011001101001011010011001011010010110011010011001011001101001011010011001011010010110011010010110100110010110011010011001011010010110011010011001011001101001011010011001011001101001100101101001011001101001011010011001011010010110011010011001011001101001011010011001...

output:

165181456

result:

ok 1 number(s): "165181456"

Test #21:

score: 5
Accepted
time: 504ms
memory: 30524kb

input:

50000 1
0010110011010011001011001101001011010011001011001101001100101101001011001101001011010011001011010010110011010011001011001101001011010011001011010010110011010010110100110010110011010011001011010010110011010010110100110010110100101100110100110010110011010010110100110010110011010011001011010010...

output:

384873

result:

ok 1 number(s): "384873"

Test #22:

score: 5
Accepted
time: 547ms
memory: 30656kb

input:

50000 1
1011001101001011010011001011010010110011010011001011001101001011010011001011001001011010011001011010010110011010011001011001101001011010011001011010010110011010010110100110010110011010011001011010010110011010011001011001101001011010011001011001101001100101101001011001101001011010011001011010...

output:

272208464

result:

ok 1 number(s): "272208464"

Test #23:

score: 5
Accepted
time: 491ms
memory: 30528kb

input:

50000 1
0110010110100101100110100110010110011010010110100110010110011010011001011010010110011010010110100110010110100101100110100101101001100101100110100110010110100101100110101101001100100110010110100101100110100101101001100101101001011001101001100101100110100101101001100101100110100110010110100101...

output:

6615896

result:

ok 1 number(s): "6615896"

Test #24:

score: 5
Accepted
time: 475ms
memory: 30172kb

input:

50000 1
1001011010010101001100010110100011000110100111101000101100110001100101100000111010110010101100101010001110011111001100101000101101101010011011101100101101001011000110011001010110110000110100101101010010110110011010100110011010101001100100100110110010110100110100100110011010001001100101100010...

output:

41003648

result:

ok 1 number(s): "41003648"

Subtask #5:

score: 0
Time Limit Exceeded

Test #25:

score: 15
Accepted
time: 590ms
memory: 30992kb

input:

50000 1
01011010011000110100110010110010?1001?0001011001101?001011001101?0101101?011011001101001010?10100101101001100101?01100101010?101001100110?1011010011001011010??110011?1?011001?1100110?101101001100101100100110010110011100110100101001?1?0?00?100101101001011001101001011100?1010010110101101001011...

output:

111365458

result:

ok 1 number(s): "111365458"

Test #26:

score: 15
Accepted
time: 1572ms
memory: 37596kb

input:

50000 1
0??0?1?10?????101??1??10??0???01001?????1??0?1?1?0101?????1?00???1?01???001?001?????0????1?01???0?110???1?0??10?0????10?????0???1????01???0011??0?1??1??????0???11???1???0????101?0?00101??0?10?00????10????????0?101101??110???1?001??????1????11??0?10???0?10???1?1?0??0???0?011?100?0????110?00??...

output:

825836622

result:

ok 1 number(s): "825836622"

Test #27:

score: 15
Accepted
time: 532ms
memory: 29880kb

input:

50000 1
11001101001100101101001011?01101001?11010011001011?1001011001101001100?01100110100101101001100101101001011001101001011?100110010110011010011001011010010110011010010110100110010110100101100110100110010110011010010110100110010110011?1001??0101101001011001?01001100101100110100101101001100101101...

output:

624938164

result:

ok 1 number(s): "624938164"

Test #28:

score: 15
Accepted
time: 511ms
memory: 30668kb

input:

50000 1
1100101100110100101101001100101100110100110010110100101100110100101101001100101101001011001101001100101100110100101101001100101101001011001101001011010011001011001101001100101101001011001101001011010011001011010010110011010011001011001101001011010011001011001101001110100101101001100101101001...

output:

554863263

result:

ok 1 number(s): "554863263"

Test #29:

score: 15
Accepted
time: 752ms
memory: 32252kb

input:

50000 1
011001101?011001011010??0110?11010?1?0010110011010010110??01100101??01101001100101?010?1?1100?10100?0?1?10011?01??101001???00110?00?100??1?001?0100?011010?11?010?1010?101100110100??1?010011001011?0???1?0?1001011??0010110011010010110?0?110010???1001011?0110100?1?0?0110011011?010011?0??110?110...

output:

586569695

result:

ok 1 number(s): "586569695"

Test #30:

score: 0
Time Limit Exceeded

input:

50000 1
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:


result:


Subtask #6:

score: 5
Accepted

Test #31:

score: 5
Accepted
time: 0ms
memory: 24212kb

input:

500 1000
011000100010010010010010110010101100101100101011010010011001101001011010011000010011010001011010000001100101100110100101101001001011010010110010110100101100111001100111010011010010110100110010110100101100110101000101100110100110010110100101100110100101101?01101101100101011001010010100110010...

output:

399
1770
1496
922
2273
23256
14888
21468
5050
11956
7336
16724
1640
23288
23076
5699
23296
556
10300
23036
2274
14904
344
958
8912
1922
372
16048
14908
2830
20496
748
17988
22832
21300
22324
17996
23792
3
17104
19492
474
8664
14960
19820
339
1402
12048
24060
20344
19324
20304
5254
3962
20340
1532
52...

result:

ok 1000 numbers

Test #32:

score: 5
Accepted
time: 3ms
memory: 26072kb

input:

500 1000
0010100100010011011101100101000010010110100101101001010010110101001?1001?0100100010010100010110110010111101110110001010010001011001010001010001001100101010011010110100110101111001001010101101000101100101100111011110110100100011010?101110010101111000101010000001110011010011000101100100101100...

output:

137
2544
479
2586
2756
19644
43352
2768
2692
12260
7068
92416
810
28
17768
91888
15836
15220
2618
327
3972
139
1504
7832
1069
12668
2576
45752
8904
2500
2582
94864
10356
95856
3446
15260
492
17572
15
43144
116
2898
81456
1738
3482
1130
4416
216
473
16884
2130
17812
39408
46312
3
2184
2774
224
7792
6...

result:

ok 1000 numbers

Test #33:

score: 5
Accepted
time: 3ms
memory: 26184kb

input:

500 1000
101001001?11011010010111100110010110101010010001111?10101010001101011011001110100101110011010011101011101110110100101011000001000110110000101000010010011?0100100100010001010001010011010011010001?011010011001110110101101011110100011100100101110011011010110101101010110100001101001110000101101...

output:

11024
63280
293632
2683
21432
712
3282
26296
3014
51856
3280
319520
156
19816
150912
1655
4506
675776
1212
2286
17620
1130
1066
28424
2306
9816
8080
2014
128320
11132
658880
740
324
2986
316832
678848
2560
4204
65440
2118
1138
5146
26664
64880
188
7392
1
145808
20808
568
9720
8996
6648
70352
35
1175...

result:

ok 1000 numbers

Test #34:

score: 5
Accepted
time: 3ms
memory: 25716kb

input:

500 1000
11010011001101101001011010110010100110110110?01001110101001010100111?010110011001001001101001110100101001100101101001001001101101001111100110100110010110011101100000100110111010001010011001101001011?1110011011101010010111001101101101101001010010001001011011001?010011001011110010?1100101?011...

output:

17104
869248
19664
56
198080
5168
12128
165472
65488
10
2716
913
385472
885248
50608
585
1760
14
356416
27440
185888
72336
1311
1794
438080
417472
1995
224
56432
270400
978
619
170624
402048
371520
416704
409728
85072
333632
1749
67568
26992
314688
1073
417216
406464
317248
897920
826368
52688
89459...

result:

ok 1000 numbers

Test #35:

score: 5
Accepted
time: 4ms
memory: 26252kb

input:

500 1000
01100011001011011100101100110100110010110100010011010110011010010010110100100110010011001011001101001011001101001?110100101100011010011001011001101001011011?01001011010000101100110100101101100110101100110100101101001100101100110010110011011000011011001011000011010010110100101100111001011001...

output:

165248
67
67800
12312
6642
173728
129888
3724
44680
59112
343
2285
2628
356640
5150
74520
651
7544
2299
23680
32548
3908
3919
337952
682
119008
123024
276
13148
33452
8254
70552
7082
799
10000
734
170048
367136
1470
398
2127
14100
763
182688
350560
804
62088
10108
365472
16168
11136
66
2347
56664
15...

result:

ok 1000 numbers

Test #36:

score: 5
Accepted
time: 7ms
memory: 25988kb

input:

500 1000
0110100110010110100101?00110100101101001100101100101101001100101100110100110010110101001011001101010100?100101101001011001101001100101100110100101101001100101101001011001101001011010011001011001101001100101101001011001101001100?0110011010110100110010110011010010110?001100101100110?001100101...

output:

393
233816
97288
178160
157752
521488
7155
2230
429616
78500
29384
192248
13936
22126
1952
103352
547504
165400
722032
39936
6616
1335584
3086016
65036
278
91692
619024
96060
62792
198512
642160
20596
627120
16676
1248096
356616
4303
79340
229120
570368
28
5047
11090
36716
1276320
1454432
17460
1160...

result:

ok 1000 numbers

Subtask #7:

score: 5
Accepted

Test #37:

score: 5
Accepted
time: 7ms
memory: 24364kb

input:

1000 2000
01100101101001011001101001011010011001011010010110011010011001011001101001011010011001011010010110011010000110100101101001100101100110100110010110100101100110100110010110011010010110100110010110100101100110100101101001100101100110100110010110100101100110100101101001100101101001011001101001...

output:

3240
660160
644768
11858784
5776
12121
11513184
618368
615968
283884
287756
131958
136654
688720
16592
16444
585256
11476064
5050
591504
106490
114470
137158
1596
6031
5648304
11535200
111930
4278
11445472
51501
11529312
1770
50069
137226
8806
139654
5686
1891
22402
19931
138610
107750
51709
117090
...

result:

ok 2000 numbers

Test #38:

score: 5
Accepted
time: 12ms
memory: 25804kb

input:

1000 2000
010000101101000010011011001?111011010010101100110010110010010110011001011011110010111001011011001001110100101100110100000100110100100110110010101100110100110101100110100110010110010101101001100010011010101011010010100110?001001101110010110100100101011010011101001111110100110011010101011001...

output:

36508
1032896
1090624
6
9394
1164
216576
987968
6772
1376
21
26580
2206
39060
1938
2464
1002560
36308
3094
1063744
3042
39804
26020
3234
988480
34740
40740
2380
1100224
718
1063744
1060800
451648
34076
7342
3308
21716
9366
2066
38796
37828
463680
491392
473984
214720
26916
453824
24692
1027392
1702
...

result:

ok 2000 numbers

Test #39:

score: 5
Accepted
time: 12ms
memory: 25924kb

input:

1000 2000
0110100011010011001011100?01111010011001011001001011010100011001100100?011000011001011001101001011010011011001011100101100110100101101001100101100110100110010110100101110100110100110100110010011001011010001010100110010110011001100101101001010110100101010101001100101100101001011001101001100...

output:

989
34652
26512
40236
53876
51268
54464
54508
56676
33632
11404
17288
5168
34224
127692
42724
27324
917
59220
54360
45664
127748
39988
10760
55776
31204
54428
18512
51836
53996
122368
8964
125652
31764
3520
42364
41944
711
127780
127164
4244
45848
54996
3
123124
44644
11488
57544
51016
17984
30840
3...

result:

ok 2000 numbers

Test #40:

score: 5
Accepted
time: 18ms
memory: 25928kb

input:

1000 2000
01100110100110010110100101100110100101101001100001011010010110011010010110100110010110100101100110100110010110011010010110100110010110100101100110100101101001100101100110100110011010010110100110010110011010011001011010010110011010011001011001100101101001101001011010011001011010010110011010...

output:

231
2210
13703
1672512
55498
1907568
60184
1886352
261516
1756608
12639
12734
1409072
70520
1541952
11132
1685808
21
284252
11707
2669
1174
1490544
1802544
259548
1917168
2507
227164
9809
261516
332836
1572912
1207
331780
1751664
680576
2782
1913328
1942512
671608
332836
2257
1464624
1873472
1467072...

result:

ok 2000 numbers

Test #41:

score: 5
Accepted
time: 7ms
memory: 24304kb

input:

1000 2000
1101001100101001100101100110100101101001101100110100110010110011010010110100110010110100101100110100110010110100101101010011001011010001011001101001011010011001011010010011010010110011010010110010110100110010100110010110100101100110100110010110011010011?010110011010010110100110010110011010...

output:

4543
4732
134104
68168
2925
116176
133168
691200
114720
126656
4421
110752
1490496
324576
98536
114664
62472
3501
75488
129424
89408
29512
13318
91
123344
126504
100
205
60480
27052
128632
131200
1587456
1678656
83848
704832
69608
5263
128648
1457856
4577
128424
120936
1451968
705728
296032
1618368
...

result:

ok 2000 numbers

Test #42:

score: 5
Accepted
time: 8ms
memory: 24324kb

input:

1000 2000
00101101001011001101001011010011001011010?1011001101001100?01100110100101101001100101101?0101100110100101101001101100110100110010110100101100110100110010110011010010110100110010110011010011001011010010110011010010110100010110100101100110100?1001011001101001011010011001011010010110011010010...

output:

34744992
4054912
38220
506120
8568032
4141440
4143808
3505952
800000
1927232
73860
17225056
31668
2151632
8740
19180
630
25944
4097440
2528896
629960
3380600
26564
815096
2068240
20092
34597920
3882640
34679232
34620
2037496
4066240
36092128
3244360
4002896
351
35317408
171072
178176
1755152
6892
35...

result:

ok 2000 numbers

Subtask #8:

score: 10
Accepted

Test #43:

score: 10
Accepted
time: 739ms
memory: 32624kb

input:

5000 100000
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:

917236499
938990217
971022999
554851016
181715280
908599565
546691770
255642236
350632401
637866763
166343858
683033814
718229119
422838464
146119838
444951922
65736136
508960351
784761148
970445740
912502388
852274767
253648149
877018129
621855209
790344143
522918273
37396133
247133429
795717452
85...

result:

ok 100000 numbers

Test #44:

score: 10
Accepted
time: 62ms
memory: 26852kb

input:

5000 100000
100101101001?1100?01011000101?0100101100110101101?0111?1101001011001101001010110011?1001?0010?1010010110011?1001011010011001101001011?011?10010110100110?101100110100110010110100100010110?1101001100101?0010110?00?100001011010011001011010?10110100011010010001?011110100110010?1010010?1?0110...

output:

181333203
591414383
589254303
940757793
510083804
174718411
721419168
15
768682772
647823182
958920107
830627476
651202642
901006181
361853307
92174151
604898967
237679107
1424896
556208572
234
898368017
790878450
375335223
226418218
28807656
641728259
231958166
581593907
320195917
757180541
4074822...

result:

ok 100000 numbers

Test #45:

score: 10
Accepted
time: 51ms
memory: 28980kb

input:

5000 100000
100101?01001011001101001100101100110100101101001100101100110100110010110100101100110100110010110011010010110100110010110100101100110100101101001100101100110100110010110100101100110100101101001100101101001011001101001100101100110100101101001100101101001011001101001011010011001011001101001...

output:

67824955
209117118
379438655
114306878
295248895
164227
146585824
19325496
1563698
130413792
97251710
979743871
366201151
36530
1740546
18730808
17162400
355493695
1572854
88845024
823394364
491714
776288255
137947
502058
484334
1271178
137492704
152824635
1679138
309568063
352055615
110175904
36316...

result:

ok 100000 numbers

Test #46:

score: 10
Accepted
time: 52ms
memory: 29052kb

input:

5000 100000
00101100110100110010111?10011?010011001111001101100110100101100110100110100110110011010011?01011101?010110100110010110100101?001101110100110010110011011001100010?010100110001101001011010010011001010011001011010110011010010101001100101101010010110010011101001100101100111110001101001100101...

output:

41941535
451313664
325919583
995930712
132719207
706248110
321992450
176117106
449806336
494098697
113472
206105860
879041541
820116607
629145591
134086654
779638211
322347544
102491949
849346519
218693810
88865164
350072291
162529271
777885434
486233063
199327469
970909370
805661366
162432
156096
9...

result:

ok 100000 numbers

Test #47:

score: 10
Accepted
time: 144ms
memory: 29780kb

input:

5000 100000
????????011??11?????1?0??????0?????0???0?00?0???10011001???0?0???1?0?11??001???????????0????01???001?001???010???110?110??0?0??0?0???0?1?11???1??0?11????1??1?0?0?????1??0?1?0010????11??00?0??01???100?0???01???????????????0?10????11?10?????01?01??1??????01??1?001?1?0?1?0?0???0?1?1101?0?01...

output:

653124428
472887592
193320531
47890176
349731052
47230205
400969322
364849857
556608253
806506705
403374118
941100958
654215111
674248493
552539335
458428844
507136873
459063360
253736841
286085933
145547659
443124539
262125212
626543796
681499574
640373630
581820872
411594429
615784351
473953763
44...

result:

ok 100000 numbers

Test #48:

score: 10
Accepted
time: 70ms
memory: 28956kb

input:

5000 100000
?11?0?011010010110?11010010?10?0011?0??1100??010?110010110?001011001??100?1001011?0110100101101001100?0110?11?10?1?00101101?01011001101001011010?11001?11?1?010110?11010?11?01?110?1?01?01?110?001?0010110?1??10011?010110100101?00110100110?101100110??0?011??00110?101?01?0?01100110100?011010...

output:

91564069
897007407
706959376
278669394
613293550
837689449
45709899
987558693
275114262
881129495
47373195
756575984
315811688
339142876
541580572
400055423
137120594
591840949
865650499
685939705
68735929
370750588
141952703
169253903
68431432
277638902
58437638
163456395
892081690
855754743
613985...

result:

ok 100000 numbers

Subtask #9:

score: 0
Time Limit Exceeded

Test #49:

score: 0
Time Limit Exceeded

input:

20000 100000
????????????????????????????0??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:


result:


Subtask #10:

score: 0
Time Limit Exceeded

Test #55:

score: 20
Accepted
time: 1084ms
memory: 35556kb

input:

50000 200000
?01101001011001?01?011?010?1001101001?110?001?0?1?1?001101?0110?101?010??01100110?00?1001011001101001011??001?001?110100101100110100101?01?0110?1011?011010011001?1?0100??110011?100?01101001100?011010?10??00110100?1?0?0110?1101?01??1?10??10010?10?00101?00??0???101101?0???010110??1?10011?...

output:

536829500
661251387
659588534
318023575
898544321
314654200
543259874
258689631
489123565
439731597
827775414
129256973
404486391
336314531
548004667
996947027
465782218
989450137
902043764
722858591
98820098
657243279
398977330
570470342
475874000
877038771
458243064
838873419
689121130
372167525
7...

result:

ok 200000 numbers

Test #56:

score: 20
Accepted
time: 1891ms
memory: 40640kb

input:

50000 200000
1?0?101???1?01?01??010?1?10???0?????1????1??0???10???10??1??1??1001??0????01???1???011??1????00??????1010????????1001?1?0?01?010???1???1???0??00???0??????10?10?001????????1???????1???????01?1?0??00??1?????11?10??????1?1?0??11000110??????00????0?1??1??0?0???0???????0?1?1???????1????0?0??...

output:

408790848
273505216
338522743
120187302
390569627
475929073
507268158
942339285
917006323
594892242
280678170
939580236
858848067
279680778
53986925
138750144
856647448
709922142
790089395
789742255
593010279
136729508
110008361
386624134
149088071
433763168
285043168
104414082
322652355
884935065
9...

result:

ok 200000 numbers

Test #57:

score: 0
Time Limit Exceeded

input:

50000 200000
???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????...

output:


result: