QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#676826#7781. Sheep Eat WolvesGenesisCompile Error//C++141.7kb2024-10-26 01:07:272024-10-26 01:07:28

Judging History

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

  • [2024-10-26 01:07:28]
  • 评测
  • [2024-10-26 01:07:27]
  • 提交

answer

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

using namespace std;

int main()#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;
}
{
	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) {
		ans += 2;
		y1 -= p;
		y2 += p;
	}

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

answer.code:8:11: error: stray ‘#’ in program
    8 | int main()#include <iostream>
      |           ^
answer.code:8:12: error: expected initializer before ‘include’
    8 | int main()#include <iostream>
      |            ^~~~~~~
answer.code:67:1: error: expected unqualified-id before ‘{’ token
   67 | {
      | ^