QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#212212#5359. 面国建设maoyiting100 ✓130ms7104kbC++14535b2023-10-13 11:49:572023-10-13 11:49:58

Judging History

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

  • [2023-10-13 11:49:58]
  • 评测
  • 测评结果:100
  • 用时:130ms
  • 内存:7104kb
  • [2023-10-13 11:49:57]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N=4e5+5;
int s,c,f[N],g[N];
long long ans;
signed main(){
	scanf("%d%d",&s,&c),c/=2;
	memset(f,0x3f,sizeof(f)),f[0]=0;
	for(int x=1;x*x<=s;x++){
		for(int i=0;i<=2*s;i++) g[i]=f[i];
		for(int i=0;i+(2*x-1)<=2*s;i++)
			g[i+(2*x-1)]=min(g[i+(2*x-1)],g[i]+1);
		for(int i=x;i<=2*s;i++)
			f[i-x]=min(f[i-x],g[i]+x);
	}
	for(int i=0;i<=2*s;i++){
		int l=f[i],r=min(c,2*s-i);
		if((r-l)&1) r--;
		if(l<=r) ans+=(r-l)/2+1;
	}
	printf("%lld\n",ans-1);
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 6
Accepted

Test #1:

score: 6
Accepted
time: 0ms
memory: 5540kb

input:

4 10

output:

7

result:

ok single line: '7'

Test #2:

score: 0
Accepted
time: 1ms
memory: 6780kb

input:

7 2

output:

0

result:

ok single line: '0'

Test #3:

score: 0
Accepted
time: 1ms
memory: 6536kb

input:

6 6

output:

2

result:

ok single line: '2'

Test #4:

score: 0
Accepted
time: 1ms
memory: 6864kb

input:

10 7

output:

2

result:

ok single line: '2'

Test #5:

score: 0
Accepted
time: 1ms
memory: 5496kb

input:

8 10

output:

8

result:

ok single line: '8'

Test #6:

score: 0
Accepted
time: 1ms
memory: 5408kb

input:

10 8

output:

5

result:

ok single line: '5'

Subtask #2:

score: 12
Accepted

Dependency #1:

100%
Accepted

Test #7:

score: 12
Accepted
time: 0ms
memory: 6812kb

input:

399 994

output:

125266

result:

ok single line: '125266'

Test #8:

score: 0
Accepted
time: 1ms
memory: 6624kb

input:

742 645

output:

184225

result:

ok single line: '184225'

Test #9:

score: 0
Accepted
time: 1ms
memory: 5544kb

input:

932 900

output:

328424

result:

ok single line: '328424'

Test #10:

score: 0
Accepted
time: 0ms
memory: 6616kb

input:

943 971

output:

357500

result:

ok single line: '357500'

Test #11:

score: 0
Accepted
time: 1ms
memory: 5412kb

input:

955 897

output:

335817

result:

ok single line: '335817'

Test #12:

score: 0
Accepted
time: 1ms
memory: 6764kb

input:

903 971

output:

340678

result:

ok single line: '340678'

Test #13:

score: 0
Accepted
time: 1ms
memory: 6068kb

input:

954 978

output:

364964

result:

ok single line: '364964'

Test #14:

score: 0
Accepted
time: 1ms
memory: 5420kb

input:

908 902

output:

319849

result:

ok single line: '319849'

Test #15:

score: 0
Accepted
time: 1ms
memory: 5956kb

input:

934 908

output:

332030

result:

ok single line: '332030'

Test #16:

score: 0
Accepted
time: 1ms
memory: 6136kb

input:

961 924

output:

348391

result:

ok single line: '348391'

Subtask #3:

score: 31
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Test #17:

score: 31
Accepted
time: 1ms
memory: 6576kb

input:

1951 2977

output:

2228950

result:

ok single line: '2228950'

Test #18:

score: 0
Accepted
time: 1ms
memory: 5928kb

input:

4626 5415

output:

10254469

result:

ok single line: '10254469'

Test #19:

score: 0
Accepted
time: 1ms
memory: 6356kb

input:

5983 4766

output:

12197679

result:

ok single line: '12197679'

Test #20:

score: 0
Accepted
time: 0ms
memory: 6208kb

input:

5094 5425

output:

11472637

result:

ok single line: '11472637'

Test #21:

score: 0
Accepted
time: 0ms
memory: 5480kb

input:

5598 4989

output:

11826716

result:

ok single line: '11826716'

Test #22:

score: 0
Accepted
time: 0ms
memory: 6536kb

input:

5577 5188

output:

12208146

result:

ok single line: '12208146'

Test #23:

score: 0
Accepted
time: 1ms
memory: 5532kb

input:

5688 5804

output:

13807758

result:

ok single line: '13807758'

Test #24:

score: 0
Accepted
time: 1ms
memory: 5448kb

input:

5856 5309

output:

13161066

result:

ok single line: '13161066'

Test #25:

score: 0
Accepted
time: 1ms
memory: 6632kb

input:

5378 5859

output:

13061554

result:

ok single line: '13061554'

Test #26:

score: 0
Accepted
time: 1ms
memory: 6764kb

input:

5729 5635

output:

13554877

result:

ok single line: '13554877'

Subtask #4:

score: 51
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #27:

score: 51
Accepted
time: 105ms
memory: 7036kb

input:

177004 361104

output:

23708315017

result:

ok single line: '23708315017'

Test #28:

score: 0
Accepted
time: 95ms
memory: 6956kb

input:

165955 330686

output:

20513788444

result:

ok single line: '20513788444'

Test #29:

score: 0
Accepted
time: 128ms
memory: 7076kb

input:

196341 379690

output:

28146877343

result:

ok single line: '28146877343'

Test #30:

score: 0
Accepted
time: 87ms
memory: 6644kb

input:

157573 352489

output:

19921485073

result:

ok single line: '19921485073'

Test #31:

score: 0
Accepted
time: 104ms
memory: 6960kb

input:

174981 388787

output:

24469285862

result:

ok single line: '24469285862'

Test #32:

score: 0
Accepted
time: 111ms
memory: 6912kb

input:

179053 386583

output:

25166888234

result:

ok single line: '25166888234'

Test #33:

score: 0
Accepted
time: 114ms
memory: 7060kb

input:

181239 344051

output:

23675514126

result:

ok single line: '23675514126'

Test #34:

score: 0
Accepted
time: 127ms
memory: 7040kb

input:

194920 395575

output:

28656790378

result:

ok single line: '28656790378'

Test #35:

score: 0
Accepted
time: 107ms
memory: 6992kb

input:

179011 399658

output:

25686628463

result:

ok single line: '25686628463'

Test #36:

score: 0
Accepted
time: 112ms
memory: 7036kb

input:

183359 394921

output:

26352667541

result:

ok single line: '26352667541'

Test #37:

score: 0
Accepted
time: 129ms
memory: 7000kb

input:

195360 389377

output:

28442072522

result:

ok single line: '28442072522'

Test #38:

score: 0
Accepted
time: 119ms
memory: 7104kb

input:

191706 397710

output:

28122791775

result:

ok single line: '28122791775'

Test #39:

score: 0
Accepted
time: 125ms
memory: 7056kb

input:

191762 396427

output:

28074496102

result:

ok single line: '28074496102'

Test #40:

score: 0
Accepted
time: 125ms
memory: 7100kb

input:

197603 386515

output:

28732769430

result:

ok single line: '28732769430'

Test #41:

score: 0
Accepted
time: 122ms
memory: 7056kb

input:

190189 377777

output:

26893005583

result:

ok single line: '26893005583'

Test #42:

score: 0
Accepted
time: 123ms
memory: 7052kb

input:

189770 391031

output:

27434979251

result:

ok single line: '27434979251'

Test #43:

score: 0
Accepted
time: 126ms
memory: 7044kb

input:

194039 389514

output:

28192735947

result:

ok single line: '28192735947'

Test #44:

score: 0
Accepted
time: 130ms
memory: 7100kb

input:

197815 388430

output:

28870257334

result:

ok single line: '28870257334'

Test #45:

score: 0
Accepted
time: 122ms
memory: 6976kb

input:

189687 383322

output:

27060812973

result:

ok single line: '27060812973'

Test #46:

score: 0
Accepted
time: 127ms
memory: 6892kb

input:

196059 391296

output:

28672072117

result:

ok single line: '28672072117'