博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #222 (Div. 1) C. Captains Mode 状压
阅读量:6615 次
发布时间:2019-06-24

本文共 3733 字,大约阅读时间需要 12 分钟。

C. Captains Mode

题目连接:

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
#include
#include
#include
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<
= 0; i --){ int cur = count(i); if (team[cur] == 1){ dp[i] = -inf; for (int j = 0; j < m; j ++) if ((i & (1<

转载地址:http://gieso.baihongyu.com/

你可能感兴趣的文章
服务化改造实践 | 如何在 Dubbo 中支持 REST
查看>>
【第8章】JVM内存管理
查看>>
ovirt官方安装文档 附录G
查看>>
磁盘故障小案例
查看>>
HTML
查看>>
【转】左手坐标系和右手坐标系
查看>>
我的友情链接
查看>>
POJ 3335 Rotating Scoreboard 半平面交
查看>>
域名和网址链接被微信浏览器拦截怎么办 微信屏蔽网址打开如何解决
查看>>
使用SQL Server Analysis Services数据挖掘的关联规则实现商品推荐功能(二)
查看>>
ubuntu下安装jdk
查看>>
XML学习总结(2)——XML简单介绍
查看>>
python操作数据库-安装
查看>>
你真的了解interface和内部类么
查看>>
kuangbin专题七 POJ3264 Balanced Lineup (线段树最大最小)
查看>>
JS动画效果链接汇总
查看>>
陈云川的OPENLDAP系列
查看>>
P1197 [JSOI2008]星球大战
查看>>
urllib模块
查看>>
XML转义字符
查看>>