#P3507. [POI2010] GRA-The Minima Game

    ID: 2566 Type: RemoteJudge 1000ms 125MiB Tried: 0 Accepted: 0 Difficulty: 5 Uploaded By: Tags>模拟动态规划,dp贪心2010POI

[POI2010] GRA-The Minima Game

题目描述

Alice and Bob learned the minima game, which they like very much, recently.

The rules of the game are as follows.

A certain number of cards lies on a table, each inscribed with a positive integer.

The players make alternate moves, Alice making the first one.

A move consists in picking an arbitrary positive number of cards from the table.

For such move the player receives a number of points equal to the minimum of the numbers inscribed on the cards he collected.

The game ends when the last card is removed from the table.

The goal of each player is maximizing the difference between their and their opponent's score.

Alice and Bob have duly noted that there is an optimal strategy in the game.

Thus they are asking you to write a program that, for a given set of cards, determines the outcome of the game when both players play optimally.

输入格式

In the first line of the standard input there is one integer () given, denoting the number of cards.

The second line holds positive integers (), separated by single spaces, that are inscribed on the cards.

输出格式

Your program should print out a single line with a single integer to the standard output - the number of points by which Alice wins over Bob, assuming they both play optimally; if it is Bob who has more points, the result should be negative.

题目大意

题目描述

译自 POI 2010 Stage 3. Day 1「The Minima Game

Alice 和 Bob 玩一个游戏。Alice 先手,两人轮流进行操作,每轮一个玩家可以选择若干张牌(至少一张),并获得相当于这些牌上所写数字的最小值的分数,直到没有牌为止。两人都希望自己的分数与对方分数之差最大。若两个玩家都使用最佳策略,求游戏的最终结果。

输入格式

第一行有一个整数 nn,表示牌的数量。

接下来一行有 nn 个正整数 k1,k2,...,knk_1, k_2, ..., k_n,表示牌上所写的数字。

输出格式

输出一行一个整数,表示最终 Alice 的分数与 Bob 分数之差。如果 Bob 的分数更多,你应该输出一个负数。

样例解释

Alice 先选择 33,得到 33 分。Bob 拿走所有牌并得到 11 分,游戏最后的比分为 3:13:1,因此 Alice 比 Bob 多两分。

数据范围

1n1061\le n\le 10^61ki1091\le k_i\le 10^9

翻译来自于 LibreOJ

3
1 3 1
2