QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#676791#7781. Sheep Eat WolvesGenesisWA 1ms3688kbC++14846b2024-10-26 00:45:162024-10-26 00:45:17

Judging History

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

  • [2024-10-26 00:45:17]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3688kb
  • [2024-10-26 00:45:16]
  • 提交

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 (y1 - p - x1 == q) {
		cout << (x1 + p - 1) / p * 2 + 1 << endl;
		return 0;
	}
	while (1)
	{
		//cout << x1 << " " << y1 << endl;
		xx = 0, yy = 0;
		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);
			}
		if (x1 <= 0) {
			ans++;
			break;
		}
		x2 += xx;
		if (x2 + p <= y2 + yy) {
			int t = x2 + p - y2;
			y2 = x2 + p;
			yy = yy - t;
		}
		else {
			y2 += yy;
			yy = 0;
		}
		y1 += yy;
		ans += 2;
		
	}
	cout << ans << endl;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

3

result:

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