QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#493487#9158. 分数Dawnq#0 5928ms377992kbC++141.3kb2024-07-27 09:47:582024-07-27 09:48:02

Judging History

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

  • [2024-07-27 09:48:02]
  • 评测
  • 测评结果:0
  • 用时:5928ms
  • 内存:377992kb
  • [2024-07-27 09:47:58]
  • 提交

answer

#include<bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef pair<int,int> pii;
const int N=1e5+5;
int n,m;
unordered_map<int,int>mp[N];
inline bool Check(int x,int y){
    if(n>8000&&m>8000)return 1<=x&&x<=n&&1<=y&&y<=m&&!mp[x].count(y)&&(y>=2*x||x>=2*y);
    return 1<=x&&x<=1e5&&1<=y&&y<=1e5&&!mp[x].count(y)&&(y>=2*x||x>=2*y);
}
signed main(){
    // freopen("ex_2.in","r",stdin);
    // freopen(".out","w",stdout);
    std::ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    cin>>n>>m;
    queue<pii>q;
    q.push(pii(1,2)),mp[1][2]=true;
    while(!q.empty()){
        pii u=q.front();q.pop();
        int x=u.fi,y=u.se,tx,ty,g;
        if(Check(y,x))q.push(pii(y,x)),mp[y][x]=true;
        if(x>y*2){
            tx=x-y*2,ty=y,g=__gcd(tx,ty),tx/=g,ty/=g;
            if(Check(tx,ty))q.push(pii(tx,ty)),mp[tx][ty]=true;
        }
        tx=x+y*2,ty=y,g=__gcd(tx,ty),tx/=g,ty/=g;
        if(Check(tx,ty))q.push(pii(tx,ty)),mp[tx][ty]=true;
    }
    if(n>8000&&m>8000){
         int Ans=0;
        for(int i=1;i<=n;++i){
            for(auto j:mp[i])Ans+=j.fi<=m;
        }
        cout<<Ans;
    }else{
        int Ans=0;
        for(int i=1;i<=n;++i)Ans+=mp[i].size();
        cout<<Ans;
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Pretests

Pretest #1:

score: 0
Wrong Answer
time: 5722ms
memory: 377892kb

input:

99 99

output:

337436

result:

wrong answer 1st numbers differ - expected: '406', found: '337436'

Pretest #2:

score: 0
Wrong Answer
time: 5722ms
memory: 377992kb

input:

98 97

output:

337436

result:

wrong answer 1st numbers differ - expected: '405', found: '337436'

Pretest #3:

score: 0
Wrong Answer
time: 5687ms
memory: 377888kb

input:

99 96

output:

337436

result:

wrong answer 1st numbers differ - expected: '396', found: '337436'

Pretest #4:

score: 0
Wrong Answer
time: 5678ms
memory: 377868kb

input:

995 977

output:

932095

result:

wrong answer 1st numbers differ - expected: '11153', found: '932095'

Pretest #5:

score: 0
Wrong Answer
time: 5781ms
memory: 377824kb

input:

991 990

output:

929953

result:

wrong answer 1st numbers differ - expected: '11220', found: '929953'

Pretest #6:

score: 0
Wrong Answer
time: 5928ms
memory: 377868kb

input:

976 968

output:

923664

result:

wrong answer 1st numbers differ - expected: '10900', found: '923664'

Pretest #7:

score: 0
Wrong Answer
time: 5642ms
memory: 377848kb

input:

7602 7864

output:

2309920

result:

wrong answer 1st numbers differ - expected: '215706', found: '2309920'

Pretest #8:

score: 0
Wrong Answer
time: 5659ms
memory: 377832kb

input:

7959 7735

output:

2359739

result:

wrong answer 1st numbers differ - expected: '220256', found: '2359739'

Pretest #9:

score: 0
Wrong Answer
time: 5703ms
memory: 377888kb

input:

7878 7863

output:

2348301

result:

wrong answer 1st numbers differ - expected: '221162', found: '2348301'

Pretest #10:

score: 0
Wrong Answer
time: 5637ms
memory: 377792kb

input:

7788 7658

output:

2335708

result:

wrong answer 1st numbers differ - expected: '215323', found: '2335708'

Pretest #11:

score: 0
Time Limit Exceeded

input:

95399 99767

output:


result:


Pretest #12:

score: 0
Time Limit Exceeded

input:

98051 99642

output:


result:


Pretest #13:

score: 0
Time Limit Exceeded

input:

95624 96007

output:


result:


Pretest #14:

score: 0
Time Limit Exceeded

input:

99208 98047

output:


result:


Pretest #15:

score: 0
Runtime Error

input:

997417 967722

output:


result:


Pretest #16:

score: 0
Runtime Error

input:

987807 956529

output:


result:


Pretest #17:

score: 0
Runtime Error

input:

971654 984345

output:


result:


Pretest #18:

score: 0
Runtime Error

input:

7892259 7983727

output:


result:


Pretest #19:

score: 0
Runtime Error

input:

7937869 29796968

output:


result:


Pretest #20:

score: 0
Runtime Error

input:

29717543 29510173

output:


result:



Final Tests

Test #1:

score: 0
Wrong Answer
time: 5671ms
memory: 377972kb

input:

96 98

output:

332281

result:

wrong answer 1st numbers differ - expected: '396', found: '332281'

Test #2:

score: 0
Wrong Answer
time: 5683ms
memory: 377892kb

input:

100 99

output:

338436

result:

wrong answer 1st numbers differ - expected: '408', found: '338436'

Test #3:

score: 0
Wrong Answer
time: 5671ms
memory: 377900kb

input:

99 99

output:

337436

result:

wrong answer 1st numbers differ - expected: '406', found: '337436'

Test #4:

score: 0
Wrong Answer
time: 5607ms
memory: 377828kb

input:

963 951

output:

917425

result:

wrong answer 1st numbers differ - expected: '10634', found: '917425'

Test #5:

score: 0
Wrong Answer
time: 5752ms
memory: 377888kb

input:

958 974

output:

915016

result:

wrong answer 1st numbers differ - expected: '10795', found: '915016'

Test #6:

score: 0
Wrong Answer
time: 5739ms
memory: 377896kb

input:

966 990

output:

918777

result:

wrong answer 1st numbers differ - expected: '11003', found: '918777'

Test #7:

score: 0
Wrong Answer
time: 5705ms
memory: 377808kb

input:

7958 7947

output:

2359739

result:

wrong answer 1st numbers differ - expected: '224482', found: '2359739'

Test #8:

score: 0
Wrong Answer
time: 5716ms
memory: 377808kb

input:

7623 7730

output:

2312664

result:

wrong answer 1st numbers differ - expected: '213444', found: '2312664'

Test #9:

score: 0
Wrong Answer
time: 5694ms
memory: 377976kb

input:

7845 7783

output:

2343576

result:

wrong answer 1st numbers differ - expected: '218916', found: '2343576'

Test #10:

score: 0
Wrong Answer
time: 5637ms
memory: 377828kb

input:

7881 7773

output:

2348665

result:

wrong answer 1st numbers differ - expected: '219451', found: '2348665'

Test #11:

score: 0
Time Limit Exceeded

input:

99414 98698

output:


result:


Test #12:

score: 0
Time Limit Exceeded

input:

98249 96148

output:


result:


Test #13:

score: 0
Time Limit Exceeded

input:

99003 96832

output:


result:


Test #14:

score: 0
Time Limit Exceeded

input:

98266 96030

output:


result:


Test #15:

score: 0
Runtime Error

input:

968207 958885

output:


result:


Test #16:

score: 0
Runtime Error

input:

959846 998397

output:


result:


Test #17:

score: 0
Runtime Error

input:

965821 972280

output:


result:


Test #18:

score: 0
Runtime Error

input:

7855098 7962479

output:


result:


Test #19:

score: 0
Runtime Error

input:

7841076 29648718

output:


result:


Test #20:

score: 0
Runtime Error

input:

29365129 29012208

output:


result: