QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#676851#7781. Sheep Eat WolvesGenesisWA 0ms3612kbC++141.1kb2024-10-26 01:30:082024-10-26 01:30:09

Judging History

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

  • [2024-10-26 01:30:09]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3612kb
  • [2024-10-26 01:30:08]
  • 提交

answer

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int main()
{
	int x1, y1, p, q;
	cin >> x1 >> y1 >> p >> q;
	int x2 = 0, y2 = 0;
	int xx = 0, yy = 0;
	int t = true;
	int ans = 0;
	if (x1 <= p) {
		cout << 1 << endl;
		return 0;
	}
	if (y1 - p - x1 == q) {
		ans += 2;
		y1 -= p;
		y2 += p;
	}
	else {
		ans += 4;
		y1 -= p;
		y2 += p;
		x1 -= p;
		x2 += p;
	}

	while (1)
	{
		//cout << x1 << " " << y1 << endl;
		xx = 0, yy = 0;
		if (x1 <= p) {
			ans++;
			break;
		}
		if (y1 - p - x1 > q) {
			ans = -1;
			break;
		}

		for (int i = 0; i <= p; i++)
			if (y1 - i - (x1 - (p - i)) <= q) {
				yy = i, xx = p - i;
				y1 -= i, x1 -= (p - i);
				break;
			}
		x2 += xx;
		//cout << x1 << " " << y1 << endl;
		if (x2 + q <= y2 + yy) {
			int t = x2 + q - y2;
			y2 = x2 + q;
			yy = yy - t;
		}
		else {
			y2 += yy;
			yy = 0;
		}
		if (yy > p) {
			//cout << yy << endl;
			ans = -1;
			break;
		}
		y1 += yy;
		ans += 2;
		
	}
	cout << ans << endl;
	return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3612kb

input:

4 4 3 1

output:

5

result:

wrong answer 1st numbers differ - expected: '3', found: '5'