QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#637877#7781. Sheep Eat Wolvesyuanyq5523ML 403ms505788kbC++202.0kb2024-10-13 14:18:012024-10-13 14:18:01

Judging History

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

  • [2024-10-13 14:18:01]
  • 评测
  • 测评结果:ML
  • 用时:403ms
  • 内存:505788kb
  • [2024-10-13 14:18:01]
  • 提交

answer

/*
ANALYSIS:

*/
#include <iostream>
#include <cstring>
#include <string>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <queue>
#include <stack>
#include <ctime>
#include <random>
#define int long long
#define i32 signed
#define endl '\n'
using namespace std;

const int N = 105;
struct Node {
	int sheep, wolf, bank;
};
int boat, gap;
vector<Node> G[2][N][N];
bool vis[N][N][2];

bool isValid(int p, int q) {
	if (p + gap >= q || p == 0) return true;
	return false; 
}

void solution()
{
	int sheep, wolf;
	cin >> sheep >> wolf >> boat >> gap;
	for (int i = 0; i <= sheep; i++)
		for (int j = 0; j <= wolf; j++)
			for (int p = 0; p <= sheep; p++)
				for (int q = 0; q <= wolf; q++) {
					if ((i-p)*(j-q)<0) continue;
					if (abs(i-p)+abs(j-q)>boat) continue;
					if (i>=p && j>=q && isValid(sheep - i, wolf - j) && isValid(p, q)) G[0][i][j].push_back({p, q, 1});
					if (p>=i && q>=j && isValid(i, j) && isValid(sheep - p, wolf - q)) G[0][p][q].push_back({i, j, 1});
					if (i<=p && j<=q && isValid(i, j) && isValid(sheep - p, wolf - q)) G[1][i][j].push_back({p, q, 0});
					if (p<=i && q<=j && isValid(sheep - i, wolf - j) && isValid(p, q)) G[1][p][q].push_back({i, j, 0});
				}
	queue<pair<Node, int> > que;
	que.push({{sheep, wolf, 0}, 0});
	vis[sheep][wolf][0] = true;
	bool flag = false;
	while (!que.empty()) {
		auto x = que.front();
		Node u = x.first;
		if (u.sheep == 0) {
			cout << x.second << endl;
			flag = true;
			break;
		} 
		que.pop();
		for (const auto& v : G[u.bank][u.sheep][u.wolf]) {
			if (!vis[v.sheep][v.wolf][v.bank]){
				vis[v.sheep][v.wolf][v.bank]=true;
				que.push({v, x.second + 1});
			}
		}
	}
	if (!flag) cout << -1 << endl;
}

i32 main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);cout.tie(0);
	//preprocess();
	int T=1;
	// cin>>T;
	while(T--)
	{
		solution();
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3596kb

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

3 3 1 1

output:

7

result:

ok 1 number(s): "7"

Test #6:

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

input:

3 3 2 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

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

input:

10 9 1 10

output:

19

result:

ok 1 number(s): "19"

Test #8:

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

input:

15 20 2 5

output:

27

result:

ok 1 number(s): "27"

Test #9:

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

input:

18 40 16 7

output:

5

result:

ok 1 number(s): "5"

Test #10:

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

input:

60 60 8 1

output:

27

result:

ok 1 number(s): "27"

Test #11:

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

input:

60 60 8 4

output:

27

result:

ok 1 number(s): "27"

Test #12:

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

input:

60 60 8 8

output:

25

result:

ok 1 number(s): "25"

Test #13:

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

input:

60 60 16 1

output:

13

result:

ok 1 number(s): "13"

Test #14:

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

input:

60 60 16 8

output:

11

result:

ok 1 number(s): "11"

Test #15:

score: 0
Accepted
time: 22ms
memory: 38132kb

input:

60 60 16 16

output:

11

result:

ok 1 number(s): "11"

Test #16:

score: 0
Accepted
time: 26ms
memory: 51500kb

input:

60 60 16 24

output:

9

result:

ok 1 number(s): "9"

Test #17:

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

input:

75 15 1 1

output:

175

result:

ok 1 number(s): "175"

Test #18:

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

input:

50 100 1 0

output:

-1

result:

ok 1 number(s): "-1"

Test #19:

score: 0
Accepted
time: 71ms
memory: 25212kb

input:

100 100 10 10

output:

35

result:

ok 1 number(s): "35"

Test #20:

score: 0
Accepted
time: 80ms
memory: 9536kb

input:

100 100 10 1

output:

37

result:

ok 1 number(s): "37"

Test #21:

score: 0
Accepted
time: 91ms
memory: 44752kb

input:

100 100 10 20

output:

33

result:

ok 1 number(s): "33"

Test #22:

score: 0
Accepted
time: 97ms
memory: 61872kb

input:

100 100 10 30

output:

31

result:

ok 1 number(s): "31"

Test #23:

score: 0
Accepted
time: 115ms
memory: 111696kb

input:

100 100 10 80

output:

21

result:

ok 1 number(s): "21"

Test #24:

score: 0
Accepted
time: 71ms
memory: 8260kb

input:

100 100 1 100

output:

199

result:

ok 1 number(s): "199"

Test #25:

score: 0
Accepted
time: 74ms
memory: 5112kb

input:

100 100 5 0

output:

95

result:

ok 1 number(s): "95"

Test #26:

score: 0
Accepted
time: 97ms
memory: 44284kb

input:

100 100 25 3

output:

13

result:

ok 1 number(s): "13"

Test #27:

score: 0
Accepted
time: 126ms
memory: 69284kb

input:

100 100 30 4

output:

11

result:

ok 1 number(s): "11"

Test #28:

score: 0
Accepted
time: 66ms
memory: 4548kb

input:

95 100 3 3

output:

125

result:

ok 1 number(s): "125"

Test #29:

score: 0
Accepted
time: 192ms
memory: 195776kb

input:

98 99 50 6

output:

5

result:

ok 1 number(s): "5"

Test #30:

score: 0
Accepted
time: 149ms
memory: 146160kb

input:

100 100 45 4

output:

7

result:

ok 1 number(s): "7"

Test #31:

score: 0
Accepted
time: 403ms
memory: 505788kb

input:

100 100 40 39

output:

7

result:

ok 1 number(s): "7"

Test #32:

score: 0
Accepted
time: 323ms
memory: 355468kb

input:

100 100 45 19

output:

7

result:

ok 1 number(s): "7"

Test #33:

score: -100
Memory Limit Exceeded

input:

100 100 49 99

output:

5

result: