QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#648114#7781. Sheep Eat Wolvesenar#TL 21ms6604kbC++201.8kb2024-10-17 17:05:452024-10-17 17:05:46

Judging History

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

  • [2024-10-17 17:05:46]
  • 评测
  • 测评结果:TL
  • 用时:21ms
  • 内存:6604kb
  • [2024-10-17 17:05:45]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;

const int INF = 1E9;

struct Node {
    int cnt, sp, wv;
    bool operator < (const Node &u) const {
        return cnt > u.cnt;
    }
};

void solve() {
    int x, y, p, q;
    std::cin >> x >> y >> p >> q;
    std::priority_queue<Node> pq;
    std::vector vis(2, std::vector(400, std::vector<int>(400)));
    int ans = INF;
    pq.push({0, 0, 0});
    while (!pq.empty()) {
        auto [c, a, b] = pq.top();
        pq.pop();
        vis[c % 2][a][b] = 1;
        if (a == x) {
            ans = std::min(ans, c);
            continue;
        }
        if (c % 2 == 0) {
            for (int t = 1; t <= p && t <= x + y - b - a; ++t) {
                for (int i = 0; i <= x - a && i <= t; ++i) {
                    for (int j = 0; j <= y - b && j <= t - i; ++j) {
                        if (y - b - j > x - a - i + q && a + i != x) continue;
                        if (vis[(c + 1) % 2][a + i][b + j]) continue;
                        pq.push({c + 1, a + i, b + j});
                    }
                }
            }
        } else {
            for (int t = 1; t <= p && t <= a + b; ++t) {
                for (int i = 0; i <= a && i <= t; ++i) {
                    for (int j = 0; j <= b && j <= t - i; ++j) {
                        if (b - j > a - i + q && a - i != 0) continue;
                        if (vis[(c + 1) % 2][a - i][b - j]) continue;
                        pq.push({c + 1, a - i, b - j});
                    }
                }
            }
        }
    }
    if (ans == INF) ans = -1;
    std::cout << ans << "\n";
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T = 1;
    // std::cin >> T;
    while(T--) {
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 4896kb

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

3 3 1 1

output:

7

result:

ok 1 number(s): "7"

Test #6:

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

input:

3 3 2 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

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

input:

10 9 1 10

output:

19

result:

ok 1 number(s): "19"

Test #8:

score: -100
Time Limit Exceeded

input:

15 20 2 5

output:


result: