24h購物| | PChome| 登入
2013-06-26 14:14:09| 人氣560| 回應0 | 上一篇 | 下一篇

[UVA] 11088 - End up with More Teams

推薦 0 收藏 0 轉貼0 訂閱站台

I I U P C 2 0 0 6

Problem E: End up with More Teams

Input: standard input

Output: standard output

 

The prestigious ICPC is here again. The coaches are busy selecting teams. Well this year, they have adopted a new policy. Contrary to traditional selection process, where few individual contests are held and the top three are placed in one team the next three in another and so on, this year the coaches decided to place members in such a way that the total number of promising teams is maximized. Promising teams are defined as a team having ability points of its members adding up to 20 or greater. Here ability point of a member denotes his capability as a programmer, the higher the better.

 

Input

There will be as many as 100 cases in the input file. Each case of input has two lines. The first line contains a positive integer, where n indicates the number contestants available for selection. The next line will contain n positive integers, each of which will be at most 30.  End of input is indicated by a value of 0 for n.

 

Output

For every case of input there will be one line of output. This line should contain the case number followed by the maximum number of promising teams that can be formed. Note that it is not mandatory to assign everyone in a team. Incase you don’t know, each team consists of exactly 3 members.

 

Constraints

-           n 15

 

Sample Input

Output for Sample Input

9
22 20 9 10 19 30 2 4 16
2
15 3
0

Case 1: 3
Case 2: 0

 

Problemsetter: Shamim Hafiz

 


題目描述:

每個隊伍三個人, 每個人都有實力值, 希望每隊的實力值總和要 >= 20, 問最多可以湊出幾隊。

題目解法:

搜索所有可能

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <algorithm>
using namespace std;
int n, A[20];
int ret, used[20];
void dfs(int idx, int i) {
    ret = max(ret, idx);
    for(; i < n; i++) {
        if(used[i] == 0) {
            used[i] = 1;
            int j, k;
            for(j = i+1; j < n; j++) {
                if(used[j] == 0)
                for(k = j+1; k < n; k++) {
                    if(A[i]+A[j]+A[k] >= 20 && used[k] == 0) {
                        used[j] = used[k] = 1;
                        dfs(idx+1, i+1);
                        used[j] = used[k] = 0;
                        j = n, k = n;
                    }
                }
            }
            used[i] = 0;
        }
    }
}
int main() {
    int i, j, k, cases = 0;
    while(scanf("%d", &n) == 1 && n) {
        for(i = 0; i < n; i++)
            scanf("%d", &A[i]);
        sort(A, A+n);
        int m = n%3;
        for(i = m, j = 0; i < n; i++)
            A[j++] = A[i];
        n = j, ret = 0;
        memset(used, 0, sizeof(used));
        dfs(0, 0);
        printf("Case %d: %d\n", ++cases, ret);
    }
    return 0;
}

台長: Morris
人氣(560) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 不分類 | 個人分類: UVA |
此分類下一篇:[UVA][dp] 11008 - Antimatter Ray Clearcutting
此分類上一篇:[UVA] 11012 - Cosmic Cabbages

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文