QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#67242#5099. 朝圣道skicean24 625ms99888kbC++142.1kb2022-12-10 11:03:022022-12-10 11:03:04

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-12-10 11:03:04]
  • 评测
  • 测评结果:24
  • 用时:625ms
  • 内存:99888kb
  • [2022-12-10 11:03:02]
  • 提交

answer

#include <bits/stdc++.h>
#define macro_expand(x) #x
#define print_macro(x) printf("%s\n",macro_expand(x))
#define FOR(i,l,r) for(LL i=(l),i##ADJK=(r);i<=i##ADJK;++i)
#define ROF(i,r,l) for(LL i=(r),i##ADJK=(l);i>=i##ADJK;--i)
using namespace std;
// TODO: your functions
typedef long long LL;
const LL MN=6005,RN=3000;
int c[MN][MN];
LL yans[MN],Mod,sub;
LL ad(LL x,LL y){return ((x+y)>=Mod)?(x+y-Mod):(x+y);}
LL dc(LL x,LL y){return ((x-y)<0)?(x-y+Mod):(x-y);}
LL ml(LL x,LL y){return (LL)x*y%Mod;}
LL add(LL &x,LL y){return ((x+=y)>=Mod)?(x-=Mod):x;}
LL dec(LL &x,LL y){return ((x-=y)<0)?(x+=Mod):x;}
LL ksm(LL x,LL y){
	LL ret=1;
	for(;y;y>>=1,x=ml(x,x))
		if(y&1)
			ret=ml(ret,x);
	return ret;
}
const int MP=1e6+5;
LL fac[MP],caf[MP];
LL binom(LL u,LL d){
	if(d<0||u<d)return 0;
	if(u<Mod)return ml(fac[u],ml(caf[d],caf[u-d]));
	return ml(binom(u/Mod,d/Mod),binom(u%Mod,d%Mod));
}
// 查询组合数前缀和??
const LL mx=1e18+1;
map<__int128,LL> mp;
LL sum(LL n,LL u){
	auto tmp=mp.find(u*mx+n);
	if(tmp!=mp.end())return tmp->second;
	n=min(n,u);
	if(u<=Mod-1){
		LL ret=0;
		FOR(i,0,n)add(ret,binom(u,i));
		return ret;
	}
	int t=sum(n%Mod,u%Mod),ji=ksm(2,u%Mod);
	return mp[u*mx+n]=ad(ml(t,sum(n/Mod,u/Mod)),ml(dc(ji,t),sum(n/Mod-1,u/Mod)));
}
void init(int o, int p)
{
	// TODO: your init
	sub=o,Mod=p;
	if(sub<=2){
		c[0][0]=1;
		FOR(i,1,RN*2){
			c[i][0]=1;
			FOR(j,1,i)c[i][j]=ad(c[i-1][j-1],c[i-1][j]);
		}
		FOR(n,0,RN){
			FOR(j,0,n-1)add(yans[n],ml(c[2*n][j],n-j));
			yans[n]=ml(yans[n],2);
		}
	}else{
		fac[0]=1;
		FOR(i,1,Mod-1)fac[i]=ml(fac[i-1],i);
		caf[Mod-1]=ksm(fac[Mod-1],Mod-2);
		ROF(i,Mod-2,0)caf[i]=ml(caf[i+1],i+1);
		// cerr<<"Mod:"<<Mod<<endl;
	}
}
LL ask(LL n)
{
	if(sub<=2)return ml(yans[n],ksm((Mod+1)/2,2*n));
	else{
	// return sum(6,7);
		LL ret=0;
		FOR(i,0,Mod-1)if(n-1-i>=0)
			add(ret,ml(sum((n-1-i)/Mod,(2*n)/Mod),binom(2*n%Mod,i)));
		ret=ml(ret,n%Mod);
		FOR(i,0,Mod-1)if(n-1-i>=0)
			dec(ret,ml(sum((n-1-i)/Mod,2*n/Mod),ml(binom((2*n)%Mod,i),i)));
		return ml(ret,ksm((Mod+1)/2,2*n-1));
	}
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 4
Accepted

Test #1:

score: 4
Accepted
time: 127ms
memory: 99888kb

input:

1 910276 554767
6
10
7
4
10
12
9
3
3
5
7
10
5
6
1
6
3
9
6
8
12
11
8
2
12
5
9
3
8
2
12
11
2
3
4
9
2
5
5
11
6
4
8
11
3
9
2
2
8
9
2
8
9
6
2
9
2
10
10
7
5
6
4
4
11
12
8
8
2
2
4
3
3
5
6
6
8
11
6
9
9
3
4
1
2
2
6
9
9
2
3
2
12
6
1
7
2
4
12
11
4
7
6
3
9
4
6
5
3
3
12
6
2
1
1
7
2
6
5
9
11
6
3
4
11
1
2
4
5
4
10...

output:

5419
364275
514407
329394
364275
229662
53120
520095
520095
509260
514407
364275
509260
5419
277384
5419
520095
53120
5419
115262
229662
243797
115262
416076
229662
509260
53120
520095
115262
416076
229662
243797
416076
520095
329394
53120
416076
509260
509260
243797
5419
329394
115262
243797
520095...

result:

ok 910276 numbers

Test #2:

score: 0
Accepted
time: 158ms
memory: 99768kb

input:

1 972231 293475
7
1
9
6
5
1
11
5
5
12
2
2
7
3
4
10
10
3
2
10
7
1
10
9
1
3
5
6
7
2
7
4
1
10
1
9
3
10
10
2
6
11
4
10
12
8
5
2
12
4
9
12
7
2
12
4
3
1
2
9
12
1
4
5
6
12
6
5
9
2
5
12
3
4
6
12
12
2
1
6
4
12
10
5
12
7
9
8
3
8
10
5
3
6
12
7
7
10
7
10
8
7
7
2
2
4
8
6
10
8
11
6
11
10
3
9
5
2
5
1
10
2
11
4
4
3...

output:

117936
146738
29445
289464
209790
146738
240513
209790
209790
158067
220107
220107
117936
201765
284305
145210
145210
201765
220107
145210
117936
146738
145210
29445
146738
201765
209790
289464
117936
220107
117936
284305
146738
145210
146738
29445
201765
145210
145210
220107
289464
240513
284305
14...

result:

ok 972231 numbers

Subtask #2:

score: 8
Accepted

Dependency #1:

100%
Accepted

Test #3:

score: 8
Accepted
time: 272ms
memory: 99760kb

input:

2 957481 386233
816
1256
2812
1370
1469
1439
33
929
1437
2680
1001
1846
1936
1161
1823
1417
2823
1753
2434
577
1671
676
174
2401
1762
123
785
604
1650
117
2344
1365
221
1096
1087
1057
457
2254
647
1827
266
1599
1445
83
2685
1372
1795
2595
1909
2605
1608
2656
1114
581
725
725
2964
1893
2997
2159
2457...

output:

243553
369562
36625
90220
62730
42787
241717
149359
268969
155264
320512
294338
253353
21209
383147
351989
377945
95957
11104
281882
322211
249147
314632
233795
328009
379666
87737
25996
373808
370185
100320
276912
381027
160702
232305
93658
378209
290139
141008
290287
259740
247075
57683
258680
366...

result:

ok 957481 numbers

Test #4:

score: 0
Accepted
time: 282ms
memory: 99740kb

input:

2 912746 991287
2945
439
558
2022
1589
2495
2517
2291
2215
160
319
1671
2800
2008
2885
29
41
580
1156
2553
1876
1137
2129
2338
1046
1818
2691
1454
1229
1965
635
1516
987
1629
140
2320
1715
2644
452
1353
2755
693
956
2518
1154
2441
946
137
496
786
2489
1509
190
2177
1216
1725
480
2572
1774
2465
298
2...

output:

660858
612612
0
511632
911772
0
0
0
92378
55539
511632
0
0
0
479655
660858
939807
894102
95931
260865
699732
0
583110
496485
0
630819
0
90117
116622
804474
466488
816354
174933
450585
988218
623007
0
208692
0
0
330429
0
758043
660858
95931
660858
0
138321
148614
208692
0
692478
277134
127908
831402
...

result:

ok 912746 numbers

Subtask #3:

score: 12
Accepted

Test #5:

score: 12
Accepted
time: 12ms
memory: 8572kb

input:

3 1 334547
8234

output:

179079

result:

ok 1 number(s): "179079"

Subtask #4:

score: 0
Time Limit Exceeded

Dependency #3:

100%
Accepted

Test #6:

score: 0
Time Limit Exceeded

input:

4 1000000 581873
49881
62491
206405
26106
129239
174098
141494
61402
149825
241992
8109
243567
71918
203927
278575
263516
143582
32237
195508
269119
9111
105700
80919
229859
150334
171917
78447
62500
190063
138903
6395
222902
118653
136505
242467
64984
170330
287622
27089
35823
107672
273459
188857
...

output:

Unauthorized output

result:


Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Time Limit Exceeded

Test #8:

score: 0
Time Limit Exceeded

input:

6 958477 522361
280121915553826833
734266539148641647
72849162479700582
274266741463686096
60278972064195458
828423669427600612
571432949203039978
518511460268700898
486268614705621285
19216283231217074
611458416727512530
175147354285288662
799769622289998997
400123443628688299
145546980862133838
40...

output:

Unauthorized output

result:


Subtask #7:

score: 0
Wrong Answer

Dependency #3:

100%
Accepted

Test #13:

score: 8
Accepted
time: 86ms
memory: 14824kb

input:

7 1 731039
314313205082038759

output:

0

result:

ok 1 number(s): "0"

Test #14:

score: 0
Accepted
time: 76ms
memory: 12616kb

input:

7 1 587945
675184352277027016

output:

0

result:

ok 1 number(s): "0"

Test #15:

score: 0
Accepted
time: 97ms
memory: 14784kb

input:

7 1 732151
522404464427087971

output:

0

result:

ok 1 number(s): "0"

Test #16:

score: 0
Accepted
time: 82ms
memory: 18212kb

input:

7 1 952025
865782493150981281

output:

0

result:

ok 1 number(s): "0"

Test #17:

score: 0
Accepted
time: 23ms
memory: 5616kb

input:

7 1 151005
80048698775676684

output:

0

result:

ok 1 number(s): "0"

Test #18:

score: 0
Accepted
time: 120ms
memory: 16316kb

input:

7 1 819153
214538328031265195

output:

0

result:

ok 1 number(s): "0"

Test #19:

score: 0
Accepted
time: 11ms
memory: 4576kb

input:

7 1 84501
605460166753167761

output:

0

result:

ok 1 number(s): "0"

Test #20:

score: 0
Accepted
time: 90ms
memory: 12320kb

input:

7 1 579977
434091105518396762

output:

0

result:

ok 1 number(s): "0"

Test #21:

score: 0
Accepted
time: 18ms
memory: 5872kb

input:

7 1 161075
649828935660369724

output:

0

result:

ok 1 number(s): "0"

Test #22:

score: 0
Accepted
time: 98ms
memory: 13180kb

input:

7 1 629595
216539117331686464

output:

0

result:

ok 1 number(s): "0"

Test #23:

score: 0
Accepted
time: 32ms
memory: 8312kb

input:

7 1 317005
831315176686118434

output:

0

result:

ok 1 number(s): "0"

Test #24:

score: 0
Accepted
time: 27ms
memory: 6552kb

input:

7 1 204399
934354294367869212

output:

0

result:

ok 1 number(s): "0"

Test #25:

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

input:

7 1 98233
515248809013032256

output:

0

result:

ok 1 number(s): "0"

Test #26:

score: -8
Wrong Answer
time: 95ms
memory: 14968kb

input:

7 1 738315
930635383520033839

output:

0

result:

wrong answer 1st numbers differ - expected: '51840', found: '0'

Subtask #8:

score: 0
Time Limit Exceeded

Test #33:

score: 16
Accepted
time: 625ms
memory: 12196kb

input:

8 9963 251
831797004675585320
494759973681332858
701341496127272302
252910460485222469
250965009655458584
366193481309061299
633134388675839346
791999098066205672
196620805863610860
363773642045280947
466508590762410710
407790578717064135
181590911404670570
570642047249889864
70138464625729452
23634...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
204
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
63
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0...

result:

ok 9963 numbers

Test #34:

score: -16
Time Limit Exceeded

input:

8 9967 6043
820328543276206812
181987384710842549
607221769552657162
341958396909446562
323372299362111304
912735937493462137
261510727281638358
792961465908198578
724729139273707925
61144688983588693
803871679975888144
565482268842659147
653581946336745517
701605486107526593
237425098688490866
3911...

output:

Unauthorized output

result:


Subtask #9:

score: 0
Skipped

Dependency #2:

100%
Accepted

Dependency #5:

0%