HDU 1052 田忌赛马 顺序不定时,采用循环输入

#include <iostream>
#include <algorithm>
using namespace std;
int a[2010], b[1010]; //a数组开成1010导致WA了一次
bool cmp(int x, int y)
{
	return x > y;
}
int main()
{
	int n;
	while(cin >> n, n)
	{
		for(int i = 0; i < n; i++)
			scanf("%d", &a[i]);
		for(int i = 0; i < n; i++)
			scanf("%d", &b[i]);
		sort(a, a+n, cmp);
		sort(b, b+n, cmp);
		for(int i = n; i < 2* n ; i++)
			a[i] = a[i-n];

		int max = -10000000;
		for(int i = 0; i < n; i++)
		{
			int t = 0;
			for(int j = 0; j < n; j++)
			{
				if(a[i+j] < b[j])
					t--;
				else if(a[i+j] > b[j])
					t++;
			}
			if(t > max)
				max = t;
		}
		cout << 200 * max << endl;
	}
	return 0;
}

你可能感兴趣的:(HDU 1052 田忌赛马 顺序不定时,采用循环输入)