QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#566922 | #9158. 分数 | jay_jayjay | 100 ✓ | 4637ms | 3940kb | C++14 | 2.0kb | 2024-09-16 03:20:59 | 2024-09-16 03:20:59 |
Judging History
answer
#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define inf 0x3f3f3f3f
#define infl 0x3f3f3f3f3f3f3f3f
#define all(x) (x).begin(),(x).end()
struct { template<class T> operator T() { int x; cin >> x; return x; } } in;
ll cnt=0;
int n,m;
bool feasible(ll a, ll b, ll c, ll d, ll x) {
return a+c*x<=n && b+d*x<=m;
}
ll cc=0;
void solve_x(int a, int b, int c, int d, int mx) {
if(!feasible(a,b,c,d,mx)) return;
// (a+cx) / (b+dx)
cc++;
ll delta = 0;
if(c) delta += min((n-a)/c/2, (m-b)/d/2) - mx/2 + 1;
else delta += (m-b)/d/2 - mx/2 + 1;
//printf("\t%lld + %lld x / %lld + %lld x | %lld | %lld\n",a,c,b,d,mx,delta);
cnt+=max(0ll,delta); delta = 0;
if(c) delta += min((n-b)/d/2, (m-a)/c/2) - mx/2 + 1;
else delta += (n-b)/d/2 - mx/2 + 1;
//printf("\t%lld + %lld x / %lld + %lld x | %lld | %lld\n",a,c,b,d,mx,delta);
cnt+=max(0ll,delta); delta = 0;
for(int u=2; feasible(b,a+1ll*u*b,d,c+1ll*u*d,max(mx,u)); u+=2) {
//printf("s2->s2 %d %d / %d %d -> %d %d / %d %d\n",a,c,b,d,b,d,a+u*b,c+u*d);
solve_x(b, a+u*b, d, c+u*d, max(mx,u));
}
}
void solve(int a, int b, int mx) {
if(!feasible(b,a,0,b,mx)) return;
// a / b
for(int u=2; feasible(a+1ll*u*b,b,0,a+1ll*u*b,max(mx,u)); u+=2) {
solve(b, a + u * b, max(mx, u));
//printf("s1->s1 %d / %d to %d / %d\n", a, b, b, a+u*b);
}
//printf("s1->s2 %d %d to %d %d / %d %d\n",a,b,b,0,a,b);
solve_x(b, a, 0, b, mx+2);
}
int main()
{
n=in, m=in;
if(n>m)swap(n,m);
// n <= m
//solve(1,0,0);
//printf("<1---\n");
solve(0,1,0);
//swap(n,m);
//printf(">1---\n");
//solve(0,1,0);
printf("%lld\n",cnt);
cerr<<cc<<endl;
}
Details
Tip: Click on the bar to expand more detailed information
Pretests
Pretest #1:
score: 5
Accepted
time: 0ms
memory: 3864kb
input:
99 99
output:
406
result:
ok 1 number(s): "406"
Pretest #2:
score: 5
Accepted
time: 0ms
memory: 3764kb
input:
98 97
output:
405
result:
ok 1 number(s): "405"
Pretest #3:
score: 5
Accepted
time: 0ms
memory: 3732kb
input:
99 96
output:
396
result:
ok 1 number(s): "396"
Pretest #4:
score: 5
Accepted
time: 0ms
memory: 3876kb
input:
995 977
output:
11153
result:
ok 1 number(s): "11153"
Pretest #5:
score: 5
Accepted
time: 0ms
memory: 3760kb
input:
991 990
output:
11220
result:
ok 1 number(s): "11220"
Pretest #6:
score: 5
Accepted
time: 0ms
memory: 3824kb
input:
976 968
output:
10900
result:
ok 1 number(s): "10900"
Pretest #7:
score: 5
Accepted
time: 0ms
memory: 3820kb
input:
7602 7864
output:
215706
result:
ok 1 number(s): "215706"
Pretest #8:
score: 5
Accepted
time: 0ms
memory: 3860kb
input:
7959 7735
output:
220256
result:
ok 1 number(s): "220256"
Pretest #9:
score: 5
Accepted
time: 0ms
memory: 3936kb
input:
7878 7863
output:
221162
result:
ok 1 number(s): "221162"
Pretest #10:
score: 5
Accepted
time: 0ms
memory: 3732kb
input:
7788 7658
output:
215323
result:
ok 1 number(s): "215323"
Pretest #11:
score: 5
Accepted
time: 3ms
memory: 3864kb
input:
95399 99767
output:
8285295
result:
ok 1 number(s): "8285295"
Pretest #12:
score: 5
Accepted
time: 3ms
memory: 3828kb
input:
98051 99642
output:
8439713
result:
ok 1 number(s): "8439713"
Pretest #13:
score: 5
Accepted
time: 3ms
memory: 3728kb
input:
95624 96007
output:
8068127
result:
ok 1 number(s): "8068127"
Pretest #14:
score: 5
Accepted
time: 3ms
memory: 3792kb
input:
99208 98047
output:
8412610
result:
ok 1 number(s): "8412610"
Pretest #15:
score: 5
Accepted
time: 52ms
memory: 3796kb
input:
997417 967722
output:
229917323
result:
ok 1 number(s): "229917323"
Pretest #16:
score: 5
Accepted
time: 51ms
memory: 3796kb
input:
987807 956529
output:
226426912
result:
ok 1 number(s): "226426912"
Pretest #17:
score: 5
Accepted
time: 50ms
memory: 3936kb
input:
971654 984345
output:
228363805
result:
ok 1 number(s): "228363805"
Pretest #18:
score: 5
Accepted
time: 798ms
memory: 3864kb
input:
7892259 7983727
output:
4647501224
result:
ok 1 number(s): "4647501224"
Pretest #19:
score: 5
Accepted
time: 3488ms
memory: 3940kb
input:
7937869 29796968
output:
15197555613
result:
ok 1 number(s): "15197555613"
Pretest #20:
score: 5
Accepted
time: 4637ms
memory: 3792kb
input:
29717543 29510173
output:
30904211576
result:
ok 1 number(s): "30904211576"
Final Tests
Test #1:
score: 5
Accepted
time: 0ms
memory: 3796kb
input:
96 98
output:
396
result:
ok 1 number(s): "396"
Test #2:
score: 5
Accepted
time: 0ms
memory: 3724kb
input:
100 99
output:
408
result:
ok 1 number(s): "408"
Test #3:
score: 5
Accepted
time: 0ms
memory: 3768kb
input:
99 99
output:
406
result:
ok 1 number(s): "406"
Test #4:
score: 5
Accepted
time: 0ms
memory: 3808kb
input:
963 951
output:
10634
result:
ok 1 number(s): "10634"
Test #5:
score: 5
Accepted
time: 0ms
memory: 3820kb
input:
958 974
output:
10795
result:
ok 1 number(s): "10795"
Test #6:
score: 5
Accepted
time: 0ms
memory: 3728kb
input:
966 990
output:
11003
result:
ok 1 number(s): "11003"
Test #7:
score: 5
Accepted
time: 0ms
memory: 3800kb
input:
7958 7947
output:
224482
result:
ok 1 number(s): "224482"
Test #8:
score: 5
Accepted
time: 0ms
memory: 3800kb
input:
7623 7730
output:
213444
result:
ok 1 number(s): "213444"
Test #9:
score: 5
Accepted
time: 0ms
memory: 3872kb
input:
7845 7783
output:
218916
result:
ok 1 number(s): "218916"
Test #10:
score: 5
Accepted
time: 0ms
memory: 3860kb
input:
7881 7773
output:
219451
result:
ok 1 number(s): "219451"
Test #11:
score: 5
Accepted
time: 0ms
memory: 3820kb
input:
99414 98698
output:
8465217
result:
ok 1 number(s): "8465217"
Test #12:
score: 5
Accepted
time: 3ms
memory: 3756kb
input:
98249 96148
output:
8237486
result:
ok 1 number(s): "8237486"
Test #13:
score: 5
Accepted
time: 3ms
memory: 3796kb
input:
99003 96832
output:
8324931
result:
ok 1 number(s): "8324931"
Test #14:
score: 5
Accepted
time: 3ms
memory: 3800kb
input:
98266 96030
output:
8231065
result:
ok 1 number(s): "8231065"
Test #15:
score: 5
Accepted
time: 49ms
memory: 3932kb
input:
968207 958885
output:
223522215
result:
ok 1 number(s): "223522215"
Test #16:
score: 5
Accepted
time: 52ms
memory: 3796kb
input:
959846 998397
output:
228770873
result:
ok 1 number(s): "228770873"
Test #17:
score: 5
Accepted
time: 49ms
memory: 3796kb
input:
965821 972280
output:
225359210
result:
ok 1 number(s): "225359210"
Test #18:
score: 5
Accepted
time: 799ms
memory: 3728kb
input:
7855098 7962479
output:
4622947400
result:
ok 1 number(s): "4622947400"
Test #19:
score: 5
Accepted
time: 3464ms
memory: 3768kb
input:
7841076 29648718
output:
15040798710
result:
ok 1 number(s): "15040798710"
Test #20:
score: 5
Accepted
time: 4578ms
memory: 3860kb
input:
29365129 29012208
output:
30267839959
result:
ok 1 number(s): "30267839959"
Extra Test:
score: 0
Extra Test Passed