Codeforces Round #222 (Div. 1) C. Captains Mode 状压

C. Captains Mode

题目连接:

http://codeforces.com/contest/377/problem/C

Description

Kostya is a progamer specializing in the discipline of Dota 2. Valve Corporation, the developer of this game, has recently released a new patch which turned the balance of the game upside down. Kostya, as the captain of the team, realizes that the greatest responsibility lies on him, so he wants to resort to the analysis of innovations patch from the mathematical point of view to choose the best heroes for his team in every game.

A Dota 2 match involves two teams, each of them must choose some heroes that the players of the team are going to play for, and it is forbidden to choose the same hero several times, even in different teams. In large electronic sports competitions where Kostya’s team is going to participate, the matches are held in the Captains Mode. In this mode the captains select the heroes by making one of two possible actions in a certain, predetermined order: pick or ban.

To pick a hero for the team. After the captain picks, the picked hero goes to his team (later one of a team members will play it) and can no longer be selected by any of the teams.
To ban a hero. After the ban the hero is not sent to any of the teams, but it still can no longer be selected by any of the teams.
The team captain may miss a pick or a ban. If he misses a pick, a random hero is added to his team from those that were available at that moment, and if he misses a ban, no hero is banned, as if there was no ban.

Kostya has already identified the strength of all the heroes based on the new patch fixes. Of course, Kostya knows the order of picks and bans. The strength of a team is the sum of the strengths of the team’s heroes and both teams that participate in the match seek to maximize the difference in strengths in their favor. Help Kostya determine what team, the first one or the second one, has advantage in the match, and how large the advantage is.

Input

The first line contains a single integer n (2 ≤ n ≤ 100) — the number of heroes in Dota 2.

The second line contains n integers s1, s2, …, sn (1 ≤ si ≤ 106) — the strengths of all the heroes.

The third line contains a single integer m (2 ≤ m ≤ min(n, 20)) — the number of actions the captains of the team must perform.

Next m lines look like “action team”, where action is the needed action: a pick (represented as a “p”) or a ban (represented as a “b”), and team is the number of the team that needs to perform the action (number 1 or 2).

It is guaranteed that each team makes at least one pick. Besides, each team has the same number of picks and the same number of bans.

Output

Print a single integer — the difference between the strength of the first team and the strength of the second team if the captains of both teams will act optimally well.

Sample Input

2
2 1
2
p 1
p 2

Sample Output

1

Hint

题意

有n个英雄,一共有m个回合,有两支队

b 1,就是该第一支队ban英雄,他可以ban掉一个没人选的英雄,或者跳过这回合

p 1,就是这支队伍开始选英雄

在两支队伍都是最优选择的情况下,两个队伍的差值是多少

题解:

考虑一下m才是20,所以直接状压莽一波就好了

dp[i]表示处理了i状态的选择之后最优情况是啥

然后直接莽一波

代码

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;

const int inf = 1000000005;
int n, m, s[105], op[25], team[25];
int dp[1 << 20];
char ch;

int count(int x){ 
    return x == 0 ? 0 : (x & 1) + count(x >> 1);
}
int main(){
//    freopen("c.in","r",stdin);
//    freopen("c.out","w",stdout);
    scanf("%d",&n);
    for (int i = 1; i <= n; i ++) scanf("%d",&s[i]);
    sort(s + 1, s + 1 + n);
    scanf("%d",&m);
    for (int i = 0; i < m; i ++){
         scanf("\n%c%d",&ch,&team[i]);
         op[i] = (ch == 'p');
    }
    
    dp[(1<<m)-1] = 0;
    for (int i = (1<<m)-2; i >= 0; i --){
        int cur = count(i);
        if (team[cur] == 1){
            dp[i] = -inf;
            for (int j = 0; j < m; j ++)
                 if ((i & (1<<j)) == 0){
                      dp[i] = max(dp[i], dp[i | (1<<j)] + op[cur] * s[n - j]);
                 }
        }else{
                 dp[i] = inf;
                 for (int j = 0; j < m; j ++)
                     if ((i & (1<<j)) == 0){
                         dp[i] = min(dp[i], dp[i | (1<<j)] - op[cur] * s[n-j]);
                     }
              }
    }
    printf("%d\n",dp[0]);
    return 0;
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5541768.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞