QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#676830#7781. Sheep Eat WolvesGenesisWA 0ms3648kbC++14897b2024-10-26 01:08:192024-10-26 01:08:19

Judging History

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

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

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;
	}

	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);
			}
		x2 += xx;
		if (x2 + q <= y2 + yy) {
			int t = x2 + q - y2;
			y2 = x2 + q;
			yy = yy - t;
		}
		else {
			y2 += yy;
			yy = 0;
		}
		y1 += yy;
		ans += 2;
		
	}
	cout << ans << endl;
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 3508kb

input:

3 3 1 1

output:

5

result:

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