CF415A.Mashmokh and Lights
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Mashmokh works in a factory. At the end of each day he must turn off all of the lights.
The lights on the factory are indexed from 1 to n . There are n buttons in Mashmokh's room indexed from 1 to n as well. If Mashmokh pushes button with index i , then each light with index not less than i that is still turned on turns off.
Mashmokh is not very clever. So instead of pushing the first button he pushes some of the buttons randomly each night. He pushed m distinct buttons b1,b2,...,bm (the buttons were pushed consecutively in the given order) this night. Now he wants to know for each light the index of the button that turned this light off. Please note that the index of button bi is actually bi , not i .
Please, help Mashmokh, print these indices.
输入格式
The first line of the input contains two space-separated integers n and m (1<=n,m<=100) , the number of the factory lights and the pushed buttons respectively. The next line contains m distinct space-separated integers b1,b2,...,bm (1<=bi<=n) .
It is guaranteed that all lights will be turned off after pushing all buttons.
输出格式
Output n space-separated integers where the i -th number is index of the button that turns the i -th light off.
输入输出样例
输入#1
5 4 4 3 1 2
输出#1
1 1 3 4 4
输入#2
5 5 5 4 3 2 1
输出#2
1 2 3 4 5
说明/提示
In the first sample, after pressing button number 4, lights 4 and 5 are turned off and lights 1, 2 and 3 are still on. Then after pressing button number 3, light number 3 is turned off as well. Pressing button number 1 turns off lights number 1 and 2 as well so pressing button number 2 in the end has no effect. Thus button number 4 turned lights 4 and 5 off, button number 3 turned light 3 off and button number 1 turned light 1 and 2 off.