QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#755409#7781. Sheep Eat WolvesStar_s#TL 0ms3576kbC++14815b2024-11-16 17:15:532024-11-16 17:15:53

Judging History

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

  • [2024-11-16 17:15:53]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3576kb
  • [2024-11-16 17:15:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

int main()
{
	int sheep_lef, wolf_lef, sheep_rig = 0, wolf_rig = 0, n, k;
	cin >> sheep_lef >> wolf_lef >> n >> k;
	int cnt = 0, all = sheep_lef;
	while (true) {
		int i;
		for (i = min(sheep_lef, n); i >= 0; i--) {
			int a = sheep_lef - i, b = wolf_lef - (n - i);
			if (b != 0 && a != 0 && b - a > k) {
				continue;
			}
			else {
				sheep_lef = a, wolf_lef = b, sheep_rig += i, wolf_rig += (n - i);
				break;
			}
		}
		if (i == -1) {
			cout << -1 << endl;
			break;
		}
		cnt++;
		if (sheep_rig == all) {
			cout << cnt << endl;
			break;
		}
		for (i = 0; ; i++) {
			int b = wolf_rig - i;
			if (b - sheep_rig > k) {
				continue;
			}
			else {
				wolf_rig = b;
				wolf_lef += i;
				break;
			}
		}
		cnt++;
	}
}

详细

Test #1:

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

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: -100
Time Limit Exceeded

input:

3 5 2 0

output:


result: