CF1349E.Slime and Hats
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Slime and Orac are holding a turn-based game. In a big room, there are n players sitting on the chairs, looking forward to a column and each of them is given a number: player 1 sits in the front of the column, player 2 sits directly behind him; player 3 sits directly behind player 2 , and so on; player n sits directly behind player n−1 . Each player wears a hat that is either black or white. As each player faces forward, player i knows the color of player j 's hat if and only if i is larger than j .
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 i -th player will know who exactly left the room among players 1,2,…,i−1 , and how many players among i+1,i+2,…,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 x leaves in the y -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 (1≤n≤200000) .
The second line contains n integers t1,t2,…,tn (0≤ti≤1015) . If ti=0 , then there are no data about player i ; otherwise it means player i leaves in the ti -th round.
At least one solution exists for the given input.
输出格式
Print one binary string of n characters. The i -th character of the string should be '1' if player i 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 5 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 5 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 5 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.