QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#632189#7781. Sheep Eat WolvesCCFWA 0ms3852kbC++14907b2024-10-12 12:51:242024-10-12 12:51:25

Judging History

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

  • [2024-10-12 12:51:25]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3852kb
  • [2024-10-12 12:51:24]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pii pair<int,int>
#define fs first
#define sc second
#define pb push_back
#define SZ(X) (int)((X).size())
#define lb(i) ((i)&-(i))
#define cl(i) memset(i,0,sizeof(i))
const int N=6.1e3;

int main(){
    int x,y,p,q,cnt=0;
    cin>>x>>y>>p>>q;
    int a=0,b=0,side=0,nw=0;
    for(;x>0;side^=1){
        cnt++;
        if(side==0){
            if(x<=p-nw)return printf("%d\n",cnt),0;
            while(nw<p){
                while(nw<p&&y-x<=q)x--,a++,nw++;
                if(nw<p)y--,b++,nw++;
            }
            if(y-x>q)return puts("-1"),0;
            nw=0;
        }
        if(side==1){
            //x>0
            while(a>0&&nw<p&&b-a>q)b--,y++,nw++;
            assert(a==0||b-a<=q);////
            nw=0;
        }
    }
    printf("%d\n",cnt);
    cerr<<"#";
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3836kb

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 3628kb

input:

3 3 1 1

output:

-1

result:

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