CF1413D.Shurikens
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Tenten runs a weapon shop for ninjas. Today she is willing to sell n shurikens which cost 1 , 2 , ..., n ryo (local currency). During a day, Tenten will place the shurikens onto the showcase, which is empty at the beginning of the day. Her job is fairly simple: sometimes Tenten places another shuriken (from the available shurikens) on the showcase, and sometimes a ninja comes in and buys a shuriken from the showcase. Since ninjas are thrifty, they always buy the cheapest shuriken from the showcase.
Tenten keeps a record for all events, and she ends up with a list of the following types of records:
-
- means that she placed another shuriken on the showcase;
-
- x means that the shuriken of price x was bought.
Today was a lucky day, and all shurikens were bought. Now Tenten wonders if her list is consistent, and what could be a possible order of placing the shurikens on the showcase. Help her to find this out!
输入格式
The first line contains the only integer n ( 1≤n≤105 ) standing for the number of shurikens.
The following 2n lines describe the events in the format described above. It's guaranteed that there are exactly n events of the first type, and each price from 1 to n occurs exactly once in the events of the second type.
输出格式
If the list is consistent, print "YES". Otherwise (that is, if the list is contradictory and there is no valid order of shurikens placement), print "NO".
In the first case the second line must contain n space-separated integers denoting the prices of shurikens in order they were placed. If there are multiple answers, print any.
输入输出样例
输入#1
4 + + - 2 + - 3 + - 1 - 4
输出#1
YES 4 2 3 1
输入#2
1 - 1 +
输出#2
NO
输入#3
3 + + + - 2 - 1 - 3
输出#3
NO
说明/提示
In the first example Tenten first placed shurikens with prices 4 and 2 . After this a customer came in and bought the cheapest shuriken which costed 2 . Next, Tenten added a shuriken with price 3 on the showcase to the already placed 4 -ryo. Then a new customer bought this 3 -ryo shuriken. After this she added a 1 -ryo shuriken. Finally, the last two customers bought shurikens 1 and 4 , respectively. Note that the order [2,4,3,1] is also valid.
In the second example the first customer bought a shuriken before anything was placed, which is clearly impossible.
In the third example Tenten put all her shurikens onto the showcase, after which a customer came in and bought a shuriken with price 2 . This is impossible since the shuriken was not the cheapest, we know that the 1 -ryo shuriken was also there.