QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#534091#9158. 分数yanshanjiahong100 ✓5243ms3896kbC++201.4kb2024-08-26 20:34:102024-08-26 20:34:11

Judging History

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

  • [2024-08-26 20:34:11]
  • 评测
  • 测评结果:100
  • 用时:5243ms
  • 内存:3896kb
  • [2024-08-26 20:34:10]
  • 提交

answer

#include<bits/stdc++.h>
#define rep(i,j,k) for(int i=j;i<=k;i++)
#define repp(i,j,k) for(int i=j;i>=k;i--)
#define ls(x) (x<<1)
#define rs(x) ((x<<1)|1)
#define mp make_pair
#define sec second
#define fir first
#define pii pair<int,int>
#define lowbit(i) i&-i
#define int long long
using namespace std;
typedef long long ll;
const int N=5e5+5,M=6,S=(1<<15)+5,inf=1e9+7,mo=998244353;
const double eps=1e-8;
void read(int &p){
	int x=0,w=1;
	char ch=0;
	while(!isdigit(ch)){
		if(ch=='-')w=-1;
		ch=getchar();
	}
	while(isdigit(ch)){
		x=(x<<1)+(x<<3)+ch-'0';
		ch=getchar();
	}
	p=x*w;
}
int n,m,upp;
int ans=0;
void getans(int a,int b,int c,int d,int lowv){
    int maxv=min(a?(n-b)/a:inf,c?(m-d)/c:inf);
    if(lowv&1)lowv++;
    if(maxv&1)maxv--;
    if(lowv<=maxv)ans+=((maxv-lowv)>>1)+1;
}
void dfs2(int a,int b,int c,int d,int lowv){
    getans(a,b,c,d,lowv),getans(c,d,a,b,lowv);
    for(int x=2;;x+=2){
        int na=a*x+c,nb=b*x+d,nc=a,nd=b,nlv=max(lowv,x);
        if(na*nlv+nb>upp||nc*nlv+nd>min(n,m))break;
        dfs2(na,nb,nc,nd,nlv);
    }
}
void dfs1(int a,int b,int lowv){
    for(int x=2;;x+=2){
        int na=b,nb=b*x+a,nlv=max(lowv,x+1);
        if(nb>upp||(nb*lowv+na)>upp)break;
        dfs1(na,nb,nlv);
    }
    dfs2(b,a,0,b,lowv);
}
signed main(){
    read(n),read(m),upp=max(n,m);
    dfs1(0,1,1);
    printf("%lld\n",ans);
    return 0;
}

详细


Pretests

Pretest #1:

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

input:

99 99

output:

406

result:

ok 1 number(s): "406"

Pretest #2:

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

input:

98 97

output:

405

result:

ok 1 number(s): "405"

Pretest #3:

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

input:

99 96

output:

396

result:

ok 1 number(s): "396"

Pretest #4:

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

input:

995 977

output:

11153

result:

ok 1 number(s): "11153"

Pretest #5:

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

input:

991 990

output:

11220

result:

ok 1 number(s): "11220"

Pretest #6:

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

input:

976 968

output:

10900

result:

ok 1 number(s): "10900"

Pretest #7:

score: 5
Accepted
time: 1ms
memory: 3764kb

input:

7602 7864

output:

215706

result:

ok 1 number(s): "215706"

Pretest #8:

score: 5
Accepted
time: 1ms
memory: 3852kb

input:

7959 7735

output:

220256

result:

ok 1 number(s): "220256"

Pretest #9:

score: 5
Accepted
time: 1ms
memory: 3788kb

input:

7878 7863

output:

221162

result:

ok 1 number(s): "221162"

Pretest #10:

score: 5
Accepted
time: 1ms
memory: 3720kb

input:

7788 7658

output:

215323

result:

ok 1 number(s): "215323"

Pretest #11:

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

input:

95399 99767

output:

8285295

result:

ok 1 number(s): "8285295"

Pretest #12:

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

input:

98051 99642

output:

8439713

result:

ok 1 number(s): "8439713"

Pretest #13:

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

input:

95624 96007

output:

8068127

result:

ok 1 number(s): "8068127"

Pretest #14:

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

input:

99208 98047

output:

8412610

result:

ok 1 number(s): "8412610"

Pretest #15:

score: 5
Accepted
time: 65ms
memory: 3852kb

input:

997417 967722

output:

229917323

result:

ok 1 number(s): "229917323"

Pretest #16:

score: 5
Accepted
time: 65ms
memory: 3824kb

input:

987807 956529

output:

226426912

result:

ok 1 number(s): "226426912"

Pretest #17:

score: 5
Accepted
time: 63ms
memory: 3768kb

input:

971654 984345

output:

228363805

result:

ok 1 number(s): "228363805"

Pretest #18:

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

input:

7892259 7983727

output:

4647501224

result:

ok 1 number(s): "4647501224"

Pretest #19:

score: 5
Accepted
time: 4494ms
memory: 3832kb

input:

7937869 29796968

output:

15197555613

result:

ok 1 number(s): "15197555613"

Pretest #20:

score: 5
Accepted
time: 5243ms
memory: 3820kb

input:

29717543 29510173

output:

30904211576

result:

ok 1 number(s): "30904211576"


Final Tests

Test #1:

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

input:

96 98

output:

396

result:

ok 1 number(s): "396"

Test #2:

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

input:

100 99

output:

408

result:

ok 1 number(s): "408"

Test #3:

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

input:

99 99

output:

406

result:

ok 1 number(s): "406"

Test #4:

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

input:

963 951

output:

10634

result:

ok 1 number(s): "10634"

Test #5:

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

input:

958 974

output:

10795

result:

ok 1 number(s): "10795"

Test #6:

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

input:

966 990

output:

11003

result:

ok 1 number(s): "11003"

Test #7:

score: 5
Accepted
time: 1ms
memory: 3832kb

input:

7958 7947

output:

224482

result:

ok 1 number(s): "224482"

Test #8:

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

input:

7623 7730

output:

213444

result:

ok 1 number(s): "213444"

Test #9:

score: 5
Accepted
time: 1ms
memory: 3764kb

input:

7845 7783

output:

218916

result:

ok 1 number(s): "218916"

Test #10:

score: 5
Accepted
time: 1ms
memory: 3760kb

input:

7881 7773

output:

219451

result:

ok 1 number(s): "219451"

Test #11:

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

input:

99414 98698

output:

8465217

result:

ok 1 number(s): "8465217"

Test #12:

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

input:

98249 96148

output:

8237486

result:

ok 1 number(s): "8237486"

Test #13:

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

input:

99003 96832

output:

8324931

result:

ok 1 number(s): "8324931"

Test #14:

score: 5
Accepted
time: 2ms
memory: 3844kb

input:

98266 96030

output:

8231065

result:

ok 1 number(s): "8231065"

Test #15:

score: 5
Accepted
time: 61ms
memory: 3812kb

input:

968207 958885

output:

223522215

result:

ok 1 number(s): "223522215"

Test #16:

score: 5
Accepted
time: 67ms
memory: 3844kb

input:

959846 998397

output:

228770873

result:

ok 1 number(s): "228770873"

Test #17:

score: 5
Accepted
time: 61ms
memory: 3844kb

input:

965821 972280

output:

225359210

result:

ok 1 number(s): "225359210"

Test #18:

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

input:

7855098 7962479

output:

4622947400

result:

ok 1 number(s): "4622947400"

Test #19:

score: 5
Accepted
time: 4446ms
memory: 3768kb

input:

7841076 29648718

output:

15040798710

result:

ok 1 number(s): "15040798710"

Test #20:

score: 5
Accepted
time: 5214ms
memory: 3764kb

input:

29365129 29012208

output:

30267839959

result:

ok 1 number(s): "30267839959"

Extra Test:

score: 0
Extra Test Passed