QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#682869#7781. Sheep Eat Wolveszyq_313#AC ✓23ms4020kbC++142.2kb2024-10-27 17:38:172024-10-27 17:38:18

Judging History

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

  • [2024-10-27 17:38:18]
  • 评测
  • 测评结果:AC
  • 用时:23ms
  • 内存:4020kb
  • [2024-10-27 17:38:17]
  • 提交

answer

#include <bits/stdc++.h>

#define i32 int 
#define i64 long long
#define pll pair<i64, i64>
const int N = 110;

using namespace std;

i64 dp[2][N][N];//
int x, y, p, q;


int main(){
    memset(dp, 0x3f, sizeof dp);
    cin >> x >> y >> p >> q;
    dp[0][x][y] = 0;
    
    queue<array<int, 3>> qq;
    qq.push({0, x, y});
    i64 ans = 1e15;
    while (!qq.empty()){
        auto [o, xx, yy] = qq.front(); qq.pop();
        
//        cout << o << ' ' << xx << ' ' << yy  << "------------" << endl;
        
        if (o == 0){
            for (int i = 0; i <= xx; i ++){
                for (int j = 0; j <= yy; j ++){
//                	cout << i << ' ' << i + j << ' ' << yy - j + q << ' ' << xx - i << ' ' << dp[1][xx - i][yy - j] << endl;
//                	if (xx == 3 && yy ==  4 && i == 3 && j == 0) cout << i << ' ' << j << "djwodwo" << endl;
					 
                    if (i + j > p) continue;
                    if (yy - j > (xx - i) + q && (xx - i) != 0) continue;
                    if (dp[1][xx - i][yy - j] != 0x3f3f3f3f3f3f3f3f) continue;
//                    cout << 1 << ' ' << xx - i << ' ' << yy - j << endl;
                    qq.push({1,  (xx - i),  (yy - j)});
                    dp[1][xx - i][yy - j] = dp[0][xx][yy] + 1;
                    if (xx - i == 0) {
                        cout << dp[1][xx - i][yy - j] << endl;
                        return 0;
//                    	ans = min(ans, dp[1][xx - i][yy - j]);
					}
                }
            }
        }else{
            for (int i = 0; i <= x-xx; i ++){
                for (int j = 0; j <= y-yy; j ++){
                    if (i + j > p) continue;
                    if (y - yy - j > (x - xx - i) + q && (x - xx - i) != 0) continue;
//                    if (j == 0) cout << "FUCK YOU !!!\n";
					if (dp[0][xx + i][yy + j] != 0x3f3f3f3f3f3f3f3f) continue;
                    
                    
//                    cout << 0 << ' ' << xx + i << ' ' << yy + j << endl;
					qq.push({0, xx + i,  (yy + j)});
                    dp[0][xx + i][yy + j] = dp[1][xx][yy] + 1;
                }
            }
        }
    }
//    if (ans != 1e15) cout << ans << endl;
    cout << "-1\n";

}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

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

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

3 3 1 1

output:

7

result:

ok 1 number(s): "7"

Test #6:

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

input:

3 3 2 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

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

input:

10 9 1 10

output:

19

result:

ok 1 number(s): "19"

Test #8:

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

input:

15 20 2 5

output:

27

result:

ok 1 number(s): "27"

Test #9:

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

input:

18 40 16 7

output:

5

result:

ok 1 number(s): "5"

Test #10:

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

input:

60 60 8 1

output:

27

result:

ok 1 number(s): "27"

Test #11:

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

input:

60 60 8 4

output:

27

result:

ok 1 number(s): "27"

Test #12:

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

input:

60 60 8 8

output:

25

result:

ok 1 number(s): "25"

Test #13:

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

input:

60 60 16 1

output:

13

result:

ok 1 number(s): "13"

Test #14:

score: 0
Accepted
time: 3ms
memory: 3992kb

input:

60 60 16 8

output:

11

result:

ok 1 number(s): "11"

Test #15:

score: 0
Accepted
time: 3ms
memory: 3956kb

input:

60 60 16 16

output:

11

result:

ok 1 number(s): "11"

Test #16:

score: 0
Accepted
time: 3ms
memory: 3732kb

input:

60 60 16 24

output:

9

result:

ok 1 number(s): "9"

Test #17:

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

input:

75 15 1 1

output:

175

result:

ok 1 number(s): "175"

Test #18:

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

input:

50 100 1 0

output:

-1

result:

ok 1 number(s): "-1"

Test #19:

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

input:

100 100 10 10

output:

35

result:

ok 1 number(s): "35"

Test #20:

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

input:

100 100 10 1

output:

37

result:

ok 1 number(s): "37"

Test #21:

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

input:

100 100 10 20

output:

33

result:

ok 1 number(s): "33"

Test #22:

score: 0
Accepted
time: 14ms
memory: 3728kb

input:

100 100 10 30

output:

31

result:

ok 1 number(s): "31"

Test #23:

score: 0
Accepted
time: 16ms
memory: 3828kb

input:

100 100 10 80

output:

21

result:

ok 1 number(s): "21"

Test #24:

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

input:

100 100 1 100

output:

199

result:

ok 1 number(s): "199"

Test #25:

score: 0
Accepted
time: 3ms
memory: 3776kb

input:

100 100 5 0

output:

95

result:

ok 1 number(s): "95"

Test #26:

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

input:

100 100 25 3

output:

13

result:

ok 1 number(s): "13"

Test #27:

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

input:

100 100 30 4

output:

11

result:

ok 1 number(s): "11"

Test #28:

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

input:

95 100 3 3

output:

125

result:

ok 1 number(s): "125"

Test #29:

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

input:

98 99 50 6

output:

5

result:

ok 1 number(s): "5"

Test #30:

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

input:

100 100 45 4

output:

7

result:

ok 1 number(s): "7"

Test #31:

score: 0
Accepted
time: 20ms
memory: 3768kb

input:

100 100 40 39

output:

7

result:

ok 1 number(s): "7"

Test #32:

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

input:

100 100 45 19

output:

7

result:

ok 1 number(s): "7"

Test #33:

score: 0
Accepted
time: 21ms
memory: 3788kb

input:

100 100 49 99

output:

5

result:

ok 1 number(s): "5"

Test #34:

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

input:

100 100 49 100

output:

5

result:

ok 1 number(s): "5"

Test #35:

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

input:

100 100 49 98

output:

5

result:

ok 1 number(s): "5"

Test #36:

score: 0
Accepted
time: 21ms
memory: 3960kb

input:

100 100 49 97

output:

5

result:

ok 1 number(s): "5"

Test #37:

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

input:

100 100 49 96

output:

5

result:

ok 1 number(s): "5"

Test #38:

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

input:

100 100 49 95

output:

5

result:

ok 1 number(s): "5"

Test #39:

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

input:

100 100 100 0

output:

1

result:

ok 1 number(s): "1"

Test #40:

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

input:

1 100 1 0

output:

1

result:

ok 1 number(s): "1"

Test #41:

score: 0
Accepted
time: 3ms
memory: 3780kb

input:

90 100 5 5

output:

87

result:

ok 1 number(s): "87"

Test #42:

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

input:

100 1 1 0

output:

199

result:

ok 1 number(s): "199"

Test #43:

score: 0
Accepted
time: 8ms
memory: 3776kb

input:

94 61 22 35

output:

9

result:

ok 1 number(s): "9"

Test #44:

score: 0
Accepted
time: 3ms
memory: 3724kb

input:

61 92 36 6

output:

7

result:

ok 1 number(s): "7"

Test #45:

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

input:

73 89 12 4

output:

57

result:

ok 1 number(s): "57"

Test #46:

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

input:

71 80 4 3

output:

-1

result:

ok 1 number(s): "-1"

Test #47:

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

input:

44 75 2 31

output:

85

result:

ok 1 number(s): "85"

Test #48:

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

input:

48 62 5 18

output:

35

result:

ok 1 number(s): "35"

Test #49:

score: 0
Accepted
time: 9ms
memory: 3788kb

input:

73 100 22 49

output:

9

result:

ok 1 number(s): "9"

Extra Test:

score: 0
Extra Test Passed