#ABC148D. Brick Break
Brick Break
题目描述
We have bricks arranged in a row from left to right.
The -th brick from the left has an integer written on it.
Among them, you can break at most bricks of your choice.
Let us say there are bricks remaining. Snuke will be satisfied if, for each integer , the -th of those brick from the left has the integer written on it.
Find the minimum number of bricks you need to break to satisfy Snuke's desire. If his desire is unsatisfiable, print -1
instead.
我们有 块砖,从左到右排成一行。
左边 的 块砖上写着一个整数 。
在这些砖块中,你最多可以打碎 块你所选择的砖块。
假设还剩下 块砖头。如果在每个整数 中 ,从左边开始的 个砖块上都写有整数 ,那么斯努克就会满意。
求满足斯努克的愿望所需的最少砖块数。如果他的愿望无法满足,则打印
-1
。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足 Snuke 的愿望所需的最少砖块数量,如果他的愿望无法满足,则打印 -1
。
样例 #1
样例输入 #1
3
2 1 2
样例输出 #1
1
样例 #2
样例输入 #2
3
2 2 2
样例输出 #2
-1
样例 #3
样例输入 #3
10
3 1 4 1 5 9 2 6 5 3
样例输出 #3
7
样例 #4
样例输入 #4
1
1
样例输出 #4
0
说明
数据规模与约定
- 输入值均为整数。
样例 解释
如果我们打碎最左边的砖块,剩下的砖块上从左到右写着整数 和 ,在这种情况下,Snuke 将满足要求。
样例 解释
在这种情况下,没有办法打破一些砖块来满足 Snuke 的愿望。
样例 解释
可能根本不需要打破砖块。