LightOJ 1198(贪心)

http://acm.hust.edu.cn/vjudge/contest/125004#problem/A

Your karate club challenged another karate club in your town. Each club enters N players into the match, and each player plays one game against a player from the other team. Each game that is won is worth 2 points, and each game that is drawn is worth 1 point. Your goal is to score as many points as possible.

Your secret agents have determined the skill of every member of the opposing team, and of course you know the skill of every member of your own team. You can use this information to decide which opposing player will play against each of your players in order to maximize your score. Assume that the player with the higher skill in a game will always win, and if the players have the same skill then they will draw.

You will be given the skills of your players and of the opposing players, you have to find the maximum number of points that your team can score.

Input

Input starts with an integer T (≤ 70), denoting the number of test cases.

Each case starts with a line containing an integer N (1 ≤ N ≤ 50). The next line contains N space separated integers denoting the skills of the players of your team. The next line also contains N space separated integers denoting the skills of the players of the opposite team. Each of the skills lies in the range [1, 1000].

Output

For each case, print the case number and the maximum number of points your team can score.

Sample Input

4

2

4 7

6 2

2

6 2

4 7

3

5 10 1

5 10 1

4

10 7 1 4

15 3 8 7

Sample Output

Case 1: 4

Case 2: 2

Case 3: 4

Case 4: 5

题意:类似于田忌赛马,不同的是若赢了对方+2分,若平局+1分,若输了不扣分。问你怎样的分配方案可以让赢得的分数最高。

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<algorithm>
using namespace std;
#define maxn 1100
int a[maxn], b[maxn];

int main()
{
     int T, n, cnt=1;

     scanf("%d", &T);

     while(T --)
     {
         scanf("%d", &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);
         sort(b, b+n);

         int j;

         for(int i=n-1; i>=0; i--)
         {
             if(a[i]<=b[i])
             {
                 for(j=0; j<i; j++)
                 {
                     if(a[j]<=b[j])
                        break;
                 }

                 int t = a[j];

                 for(; j<i; j++)
                    a[j]=a[j+1];

                 a[j]=a[i];
                 a[i] = t;
             }
         }

         int ans = 0;
         for(int i=0; i<n; i++)
         {
             if(a[i]>b[i]) ans+=2;
             else if(a[i] == b[i]) ans+=1;
         }

         printf("Case %d: %d
", cnt++, ans);
     }
    return 0;
}
View Code