CF1779H.Olympic Team Building

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Iron and Werewolf are participating in a chess Olympiad, so they want to practice team building. They gathered nn players, where nn is a power of 22 , and they will play sports. Iron and Werewolf are among those nn people.

One of the sports is tug of war. For each 1in1\leq i \leq n , the ii -th player has strength sis_i . Elimination rounds will be held until only one player remains — we call that player the absolute winner.

In each round:

  • Assume that m>1m>1 players are still in the game, where mm is a power of 22 .
  • The mm players are split into two teams of equal sizes (i. e., with m/2m/2 players in each team). The strength of a team is the sum of the strengths of its players.
  • If the teams have equal strengths, Iron chooses who wins; otherwise, the stronger team wins.
  • Every player in the losing team is eliminated, so m/2m/2 players remain.

Iron already knows each player's strength and is wondering who can become the absolute winner and who can't if he may choose how the teams will be formed in each round, as well as the winning team in case of equal strengths.

输入格式

The first line contains a single integer nn ( 4n324 \leq n \leq 32 ) — the number of players participating in tug of war. It is guaranteed that nn is a power of 22 .

The second line consists of a sequence s1,s2,,sns_1,s_2, \ldots, s_n of integers ( 1si10151 \leq s_i \leq 10^{15} ) — the strengths of the players.

输出格式

In a single line output a binary string ss of length nn — the ii -th character of ss should be 11 if the ii -th player can become the absolute winner and it should be 00 otherwise.

输入输出样例

  • 输入#1

    4
    60 32 59 87

    输出#1

    1001
  • 输入#2

    4
    100 100 100 100

    输出#2

    1111
  • 输入#3

    8
    8 8 8 8 4 4 4 4

    输出#3

    11110000
  • 输入#4

    32
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

    输出#4

    00000000000000001111111111111111
  • 输入#5

    16
    1 92875987325987 1 1 92875987325986 92875987325985 1 92875987325988 92875987325990 92875987325989 1 1 92875987325984 92875987325983 1 1

    输出#5

    0100110111001000

说明/提示

In the first example, players 11 and 44 with their respective strengths of 6060 and 8787 can become the absolute winners.

Let's describe the process for player 11 . Firstly, we divide the players into teams [1,3][1,3] and [2,4][2,4] . Strengths of those two teams are 60+59=11960+59=119 and 32+87=11932+87=119 . They they are equal, Iron can choose to disqualify any of the two teams. Let his choice be the second team.

We are left with players 11 and 33 . Since 11 has greater strength ( 60>5960>59 ) they win and are declared the absolute winner as they are the last remaining player.

In the third example, the strengths of the remaining players may look like [8,8,8,8,4,4,4,4][8,8,4,4][8,4][8][8,8,8,8,4,4,4,4] \rightarrow [8,8,4,4] \rightarrow [8,4] \rightarrow [8] . Each person with strength 88 can become the absolute winner and it can be proved that others can't.

首页