QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#749915#7781. Sheep Eat WolvespodysTL 492ms4020kbC++142.8kb2024-11-15 11:21:312024-11-15 11:21:35

Judging History

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

  • [2024-11-15 11:21:35]
  • 评测
  • 测评结果:TL
  • 用时:492ms
  • 内存:4020kb
  • [2024-11-15 11:21:31]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"
int x,y,p,q;
// int ans=INT32_MAX;
struct stu{
    int a,b,c,d,cnt;
};
unordered_map<int,int> mp;
int mx=0;
deque<stu> que;
int ha(int a,int b,int c,int d){
    return a+b*131+c*17161+d*2248091;
}
// void dfs(int a,int b,int c,int d,int cnt){
//     if(a==0){
//         ans=min(ans,cnt);
//         return;
//     }
//     if(b-p>a+q){
//         return;
//     }
//     int has=a+b*131+c*17161+d*2248091;
//     if(mp[has] && cnt >= mp[has]) return;
//     mp[has] = cnt;
//     for(int aa=0;aa<=a;aa++){
//         if(aa>p) break;
//         for(int bb=0;bb<=b;bb++){
//             if(aa+bb>p) break;
//             if(a-aa && b-bb>a-aa+q) continue;
//             if(a-aa==0){
//                 ans=min(ans,cnt+1);
//                 continue;
//             }
//             for(int aaa=0;aaa<=c+aa;aaa++){
//                 if(aaa>p) break;
//                 for(int bbb=0;bbb<=d+bb;bbb++){
//                     if(aaa+bbb>p) break;
//                     if(c+aa-aaa && d+bb-bbb>c+aa-aaa+q) continue;
//                     // mx =max(mx,aa-aaa);
//                     dfs(a-aa+aaa,b-bb+bbb,c+aa-aaa,d+bb-bbb,cnt+2);
//                 }
//             }
            
//         }
//     }
// }
void solve(){
    cin>>x>>y>>p>>q;
    if(y-p>x+q){
        cout<<-1<<endl;
        return;
    }
    que.push_back({x,y,0,0,0});
    mp[ha(x,y,0,0)]=1;
    int ans=0;
    while(!que.empty()){
        if(ans) break;
        stu now=que.front();
        que.pop_front();
        int a=now.a,b=now.b,c=now.c,d=now.d,cnt=now.cnt;
        if(a==0){
            ans=cnt;
            break;
        }
        if(b-p>a+q) continue;
        for(int aa=0;aa<=a;aa++){
            if(aa>p) break;
            for(int bb=0;bb<=b;bb++){
                if(aa+bb>p) break;
                if(a-aa && b-bb>a-aa+q) continue;
                if(a-aa==0){
                    ans=cnt+2;
                    break;
                }
                for(int aaa=0;aaa<=c+aa;aaa++){
                    if(aaa>p) break;
                    for(int bbb=0;bbb<=d+bb;bbb++){
                        if(aaa+bbb>p) break;
                        if(c+aa-aaa && d+bb-bbb>c+aa-aaa+q) continue;
                        int h=ha(a-aa+aaa,b-bb+bbb,c+aa-aaa,d+bb-bbb);
                        if(mp[h]) continue;
                        mp[h]=1;
                        que.push_back({a-aa+aaa,b-bb+bbb,c+aa-aaa,d+bb-bbb,cnt+2});
                    }
                }
                
            }
        }

    }
    if(ans==0) cout<<-1<<endl;
    else cout<<ans-1<<endl;
}
signed main(){
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--){
        solve();
    }
    return 0;
}

详细

Test #1:

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

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

3 3 1 1

output:

7

result:

ok 1 number(s): "7"

Test #6:

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

input:

3 3 2 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

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

input:

10 9 1 10

output:

19

result:

ok 1 number(s): "19"

Test #8:

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

input:

15 20 2 5

output:

27

result:

ok 1 number(s): "27"

Test #9:

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

input:

18 40 16 7

output:

5

result:

ok 1 number(s): "5"

Test #10:

score: 0
Accepted
time: 2ms
memory: 3568kb

input:

60 60 8 1

output:

27

result:

ok 1 number(s): "27"

Test #11:

score: 0
Accepted
time: 4ms
memory: 3636kb

input:

60 60 8 4

output:

27

result:

ok 1 number(s): "27"

Test #12:

score: 0
Accepted
time: 7ms
memory: 3624kb

input:

60 60 8 8

output:

25

result:

ok 1 number(s): "25"

Test #13:

score: 0
Accepted
time: 12ms
memory: 3864kb

input:

60 60 16 1

output:

13

result:

ok 1 number(s): "13"

Test #14:

score: 0
Accepted
time: 58ms
memory: 3692kb

input:

60 60 16 8

output:

11

result:

ok 1 number(s): "11"

Test #15:

score: 0
Accepted
time: 125ms
memory: 3636kb

input:

60 60 16 16

output:

11

result:

ok 1 number(s): "11"

Test #16:

score: 0
Accepted
time: 157ms
memory: 3720kb

input:

60 60 16 24

output:

9

result:

ok 1 number(s): "9"

Test #17:

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

input:

75 15 1 1

output:

175

result:

ok 1 number(s): "175"

Test #18:

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

input:

50 100 1 0

output:

-1

result:

ok 1 number(s): "-1"

Test #19:

score: 0
Accepted
time: 30ms
memory: 3672kb

input:

100 100 10 10

output:

35

result:

ok 1 number(s): "35"

Test #20:

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

input:

100 100 10 1

output:

37

result:

ok 1 number(s): "37"

Test #21:

score: 0
Accepted
time: 55ms
memory: 4020kb

input:

100 100 10 20

output:

33

result:

ok 1 number(s): "33"

Test #22:

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

input:

100 100 10 30

output:

31

result:

ok 1 number(s): "31"

Test #23:

score: 0
Accepted
time: 94ms
memory: 3784kb

input:

100 100 10 80

output:

21

result:

ok 1 number(s): "21"

Test #24:

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

input:

100 100 1 100

output:

199

result:

ok 1 number(s): "199"

Test #25:

score: 0
Accepted
time: 1ms
memory: 3676kb

input:

100 100 5 0

output:

95

result:

ok 1 number(s): "95"

Test #26:

score: 0
Accepted
time: 206ms
memory: 3900kb

input:

100 100 25 3

output:

13

result:

ok 1 number(s): "13"

Test #27:

score: 0
Accepted
time: 492ms
memory: 3704kb

input:

100 100 30 4

output:

11

result:

ok 1 number(s): "11"

Test #28:

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

input:

95 100 3 3

output:

125

result:

ok 1 number(s): "125"

Test #29:

score: -100
Time Limit Exceeded

input:

98 99 50 6

output:


result: