QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#490210#9158. 分数JohnAlfnov#100 ✓4172ms200664kbC++141.9kb2024-07-25 12:48:332024-07-25 12:48:34

Judging History

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

  • [2024-07-25 12:48:34]
  • 评测
  • 测评结果:100
  • 用时:4172ms
  • 内存:200664kb
  • [2024-07-25 12:48:33]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int B=262144;
queue<int>q[B+5];
struct apple{
	int a00,a01,a10,a11;
	apple(int a00=0,int a01=0,int a10=0,int a11=0):
		a00(a00),a01(a01),a10(a10),a11(a11){}
};
apple vc[100005];int tt=0;
void calc(int n,int m){
	queue<pair<pair<int,int>,pair<int,int>>>q;
	q.emplace(make_pair(0,1),make_pair(1,0));
	while(q.size()){
		auto auu=q.front();q.pop();
		auto au=auu.first,ua=auu.second;
		int A=au.first,B=au.second;
		int AA=ua.first,BB=ua.second;
		vc[++tt]=(apple(AA,A,BB,B));
		if(B>n)continue;
		A+=2*B;AA+=2*BB;
		while(A<=m){
			q.emplace(make_pair(B,A),make_pair(BB,AA));
			A+=2*B;AA+=2*BB;
		}
	}
}
int qq[2*B+5];
int c[2*B+5],N;
void add(int x){
	while(x<=N)++c[x],x+=x&-x;
}
void clr(int x){
	while(x<=N)c[x]=0,x+=x&-x;
}
int query(int x){
	int ans=0;
	while(x){
		ans+=c[x];
		x-=x&-x;
	}
	return ans;
}
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	if(n>m)swap(n,m);
	calc(n/B,m/B);
	long long ans=0;
	q[0].emplace(1);
	for(int i=0;i<=B;++i){
		int t=0;
		while(q[i].size()){
			int x=q[i].front();q[i].pop();
			if(x>B){
				qq[++t]=x-2*i;
				continue;
			}
			if(i&&x+2*i<=B)q[i].emplace(x+2*i);
			else if(i)qq[++t]=x;
			if(i<=n&&x<=m)++ans;
			if(x<=n)++ans;
			int A=i+2*x;
			q[x].emplace(A);
		}
		if(i==0)continue;
		N=2*i;
		long long ch=0;
		for(int j=1;j<=t;++j){
			int cu=qq[j];
			ch+=cu/2/i;
			add(2*i-cu%(2*i));
		}
		for(int j=1;j<=tt;++j){
			auto au=vc[j];
			long long sj=m;
			if(au.a01)sj=min(sj,(n-1ll*au.a00*i)/au.a01);
			if(au.a11)sj=min(sj,(m-1ll*au.a10*i)/au.a11);
			if(sj<=B)continue;
			ans+=t*(sj/2/i)-ch;
			ans-=query(2*i-1-sj%(2*i));
			sj=min(sj,(n-1ll*au.a10*i)/au.a11);
			if(sj>B){
				ans+=t*(sj/2/i)-ch;
				ans-=query(2*i-1-sj%(2*i));
			}
		}
		for(int j=1;j<=t;++j)clr(2*i-qq[j]%(2*i));
	}
	printf("%lld\n",ans-2);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Pretests

Pretest #1:

score: 5
Accepted
time: 961ms
memory: 200348kb

input:

99 99

output:

406

result:

ok 1 number(s): "406"

Pretest #2:

score: 5
Accepted
time: 952ms
memory: 200344kb

input:

98 97

output:

405

result:

ok 1 number(s): "405"

Pretest #3:

score: 5
Accepted
time: 951ms
memory: 200352kb

input:

99 96

output:

396

result:

ok 1 number(s): "396"

Pretest #4:

score: 5
Accepted
time: 949ms
memory: 200428kb

input:

995 977

output:

11153

result:

ok 1 number(s): "11153"

Pretest #5:

score: 5
Accepted
time: 962ms
memory: 200372kb

input:

991 990

output:

11220

result:

ok 1 number(s): "11220"

Pretest #6:

score: 5
Accepted
time: 938ms
memory: 200348kb

input:

976 968

output:

10900

result:

ok 1 number(s): "10900"

Pretest #7:

score: 5
Accepted
time: 954ms
memory: 200636kb

input:

7602 7864

output:

215706

result:

ok 1 number(s): "215706"

Pretest #8:

score: 5
Accepted
time: 953ms
memory: 200636kb

input:

7959 7735

output:

220256

result:

ok 1 number(s): "220256"

Pretest #9:

score: 5
Accepted
time: 974ms
memory: 200372kb

input:

7878 7863

output:

221162

result:

ok 1 number(s): "221162"

Pretest #10:

score: 5
Accepted
time: 944ms
memory: 200636kb

input:

7788 7658

output:

215323

result:

ok 1 number(s): "215323"

Pretest #11:

score: 5
Accepted
time: 955ms
memory: 200336kb

input:

95399 99767

output:

8285295

result:

ok 1 number(s): "8285295"

Pretest #12:

score: 5
Accepted
time: 950ms
memory: 200372kb

input:

98051 99642

output:

8439713

result:

ok 1 number(s): "8439713"

Pretest #13:

score: 5
Accepted
time: 933ms
memory: 200636kb

input:

95624 96007

output:

8068127

result:

ok 1 number(s): "8068127"

Pretest #14:

score: 5
Accepted
time: 955ms
memory: 200352kb

input:

99208 98047

output:

8412610

result:

ok 1 number(s): "8412610"

Pretest #15:

score: 5
Accepted
time: 971ms
memory: 200644kb

input:

997417 967722

output:

229917323

result:

ok 1 number(s): "229917323"

Pretest #16:

score: 5
Accepted
time: 1000ms
memory: 200352kb

input:

987807 956529

output:

226426912

result:

ok 1 number(s): "226426912"

Pretest #17:

score: 5
Accepted
time: 991ms
memory: 200648kb

input:

971654 984345

output:

228363805

result:

ok 1 number(s): "228363805"

Pretest #18:

score: 5
Accepted
time: 1466ms
memory: 200644kb

input:

7892259 7983727

output:

4647501224

result:

ok 1 number(s): "4647501224"

Pretest #19:

score: 5
Accepted
time: 2844ms
memory: 200348kb

input:

7937869 29796968

output:

15197555613

result:

ok 1 number(s): "15197555613"

Pretest #20:

score: 5
Accepted
time: 4172ms
memory: 200636kb

input:

29717543 29510173

output:

30904211576

result:

ok 1 number(s): "30904211576"


Final Tests

Test #1:

score: 5
Accepted
time: 953ms
memory: 200352kb

input:

96 98

output:

396

result:

ok 1 number(s): "396"

Test #2:

score: 5
Accepted
time: 959ms
memory: 200344kb

input:

100 99

output:

408

result:

ok 1 number(s): "408"

Test #3:

score: 5
Accepted
time: 962ms
memory: 200640kb

input:

99 99

output:

406

result:

ok 1 number(s): "406"

Test #4:

score: 5
Accepted
time: 949ms
memory: 200664kb

input:

963 951

output:

10634

result:

ok 1 number(s): "10634"

Test #5:

score: 5
Accepted
time: 949ms
memory: 200344kb

input:

958 974

output:

10795

result:

ok 1 number(s): "10795"

Test #6:

score: 5
Accepted
time: 943ms
memory: 200304kb

input:

966 990

output:

11003

result:

ok 1 number(s): "11003"

Test #7:

score: 5
Accepted
time: 928ms
memory: 200604kb

input:

7958 7947

output:

224482

result:

ok 1 number(s): "224482"

Test #8:

score: 5
Accepted
time: 957ms
memory: 200376kb

input:

7623 7730

output:

213444

result:

ok 1 number(s): "213444"

Test #9:

score: 5
Accepted
time: 953ms
memory: 200372kb

input:

7845 7783

output:

218916

result:

ok 1 number(s): "218916"

Test #10:

score: 5
Accepted
time: 937ms
memory: 200644kb

input:

7881 7773

output:

219451

result:

ok 1 number(s): "219451"

Test #11:

score: 5
Accepted
time: 946ms
memory: 200376kb

input:

99414 98698

output:

8465217

result:

ok 1 number(s): "8465217"

Test #12:

score: 5
Accepted
time: 951ms
memory: 200372kb

input:

98249 96148

output:

8237486

result:

ok 1 number(s): "8237486"

Test #13:

score: 5
Accepted
time: 954ms
memory: 200308kb

input:

99003 96832

output:

8324931

result:

ok 1 number(s): "8324931"

Test #14:

score: 5
Accepted
time: 957ms
memory: 200648kb

input:

98266 96030

output:

8231065

result:

ok 1 number(s): "8231065"

Test #15:

score: 5
Accepted
time: 966ms
memory: 200372kb

input:

968207 958885

output:

223522215

result:

ok 1 number(s): "223522215"

Test #16:

score: 5
Accepted
time: 966ms
memory: 200352kb

input:

959846 998397

output:

228770873

result:

ok 1 number(s): "228770873"

Test #17:

score: 5
Accepted
time: 977ms
memory: 200388kb

input:

965821 972280

output:

225359210

result:

ok 1 number(s): "225359210"

Test #18:

score: 5
Accepted
time: 1446ms
memory: 200356kb

input:

7855098 7962479

output:

4622947400

result:

ok 1 number(s): "4622947400"

Test #19:

score: 5
Accepted
time: 2817ms
memory: 200344kb

input:

7841076 29648718

output:

15040798710

result:

ok 1 number(s): "15040798710"

Test #20:

score: 5
Accepted
time: 4110ms
memory: 200648kb

input:

29365129 29012208

output:

30267839959

result:

ok 1 number(s): "30267839959"

Extra Test:

score: 0
Extra Test Passed