QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#647991 | #7781. Sheep Eat Wolves | enar# | WA | 16ms | 5432kb | C++20 | 1.5kb | 2024-10-17 16:30:28 | 2024-10-17 16:30:29 |
Judging History
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(400, std::vector<int>(400));
int ans = INF;
pq.push({0, 0, 0});
while (!pq.empty()) {
auto [c, a, b] = pq.top();
pq.pop();
// std::cout << c << " " << a << " " << b << "\n";
assert(b <= y);
vis[a][b] = 1;
if (a == x) {
ans = std::min(ans, c);
continue;
}
if (c % 2 == 0) {
for (int i = 0; i <= x - a && i <= p; ++i) {
if (y - b - p + i > x - a - i + q && a + i != x) {
continue;
}
if (vis[a + i][std::min(y - b, b + p - i)]) continue;
pq.push({c + 1, a + i, std::min(y - b, b + p - i)});
}
} else {
for (int i = 0; i <= b && i <= p; ++i) {
if (b - i > a + q && a != 0) continue;
pq.push({c + 1, a, b - i});
}
}
}
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: 1ms
memory: 4124kb
input:
4 4 3 1
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
3 5 2 0
output:
5
result:
ok 1 number(s): "5"
Test #3:
score: 0
Accepted
time: 1ms
memory: 3844kb
input:
2 5 1 1
output:
-1
result:
ok 1 number(s): "-1"
Test #4:
score: 0
Accepted
time: 1ms
memory: 3792kb
input:
1 1 1 0
output:
1
result:
ok 1 number(s): "1"
Test #5:
score: 0
Accepted
time: 1ms
memory: 3900kb
input:
3 3 1 1
output:
7
result:
ok 1 number(s): "7"
Test #6:
score: 0
Accepted
time: 1ms
memory: 3828kb
input:
3 3 2 1
output:
3
result:
ok 1 number(s): "3"
Test #7:
score: 0
Accepted
time: 1ms
memory: 4284kb
input:
10 9 1 10
output:
19
result:
ok 1 number(s): "19"
Test #8:
score: -100
Wrong Answer
time: 16ms
memory: 5432kb
input:
15 20 2 5
output:
-1
result:
wrong answer 1st numbers differ - expected: '27', found: '-1'