import java.util.Scanner; import java.util.TreeSet; public class Jengasort { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(),count = N-1; TreeSet list = new TreeSet<>(); list.add(s.nextInt()); for(int i = 1;i < N;i++){ int k = s.nextInt(); if(list.last() < k){ if(list.contains(k-1)){ count--; }else{ count = N-1; } } list.add(k); } s.close(); System.out.println(count); } }