CF1349E.Slime and Hats

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Slime and Orac are holding a turn-based game. In a big room, there are nn players sitting on the chairs, looking forward to a column and each of them is given a number: player 11 sits in the front of the column, player 22 sits directly behind him; player 33 sits directly behind player 22 , and so on; player nn sits directly behind player n1n-1 . Each player wears a hat that is either black or white. As each player faces forward, player ii knows the color of player jj 's hat if and only if ii is larger than jj .

At the start of each turn, Orac will tell whether there exists a player wearing a black hat in the room.

After Orac speaks, if the player can uniquely identify the color of his hat, he will put his hat on the chair, stand up and leave the room. All players are smart, so if it is possible to understand the color of their hat using the obtained information during this and previous rounds, they will understand it.

In each turn, all players who know the color of their hats will leave at the same time in this turn, which means a player can only leave in the next turn if he gets to know the color of his hat only after someone left the room at this turn.

Note that when the player needs to leave, he will put the hat on the chair before leaving, so the players ahead of him still cannot see his hat.

The ii -th player will know who exactly left the room among players 1,2,,i11,2,\ldots,i-1 , and how many players among i+1,i+2,,ni+1,i+2,\ldots,n have left the room.

Slime stands outdoor. He watches the players walking out and records the numbers of the players and the time they get out. Unfortunately, Slime is so careless that he has only recorded some of the data, and this given data is in the format "player xx leaves in the yy -th round".

Slime asked you to tell him the color of each player's hat. If there are multiple solutions, you can find any of them.

输入格式

The first line contains a integer n (1n200000)n\ (1\le n\le 200\,000) .

The second line contains nn integers t1,t2,,tn (0ti1015)t_1,t_2,\dots,t_n\ (0\le t_i\le 10^{15}) . If ti=0t_i=0 , then there are no data about player ii ; otherwise it means player ii leaves in the tit_i -th round.

At least one solution exists for the given input.

输出格式

Print one binary string of nn characters. The ii -th character of the string should be '1' if player ii wears a black hat and should be '0', otherwise. If there are multiple solutions, you can print any of them.

输入输出样例

  • 输入#1

    5
    0 1 1 0 0

    输出#1

    00000
  • 输入#2

    5
    0 2 2 0 0

    输出#2

    00001
  • 输入#3

    5
    0 0 0 0 0

    输出#3

    00000
  • 输入#4

    5
    4 4 0 4 4

    输出#4

    00100

说明/提示

In the first example, for the given solution, all the players wear white hats. In the first turn, Orac tells all the players that there are no players wearing a black hat, so each player knows that he is wearing a white hat, and he will leave in the first turn.

In the second example, for the given solution, the player 55 wears a black hat, other players wear white hats. Orac tells all the players that there exists a player wearing a black hat, and player 55 know that the other players are all wearing white hats, so he can infer that he is wearing a black hat; therefore he leaves in the first turn, other players leave in the second turn. Note that other players can infer that they are wearing white hats immediately after player 55 leaves, but they have to wait for the next turn to leave according to the rule.

In the third example, there is no information about the game, so any output is correct.

首页