cf #445(div2) C

C. Petya and Catacombs

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs.

Catacombs consist of several rooms and bidirectional passages between some pairs of them. Some passages can connect a room to itself and since the passages are built on different depths they do not intersect each other. Every minute Petya arbitrary chooses a passage from the room he is currently in and then reaches the room on the other end of the passage in exactly one minute. When he enters a room at minute i, he makes a note in his logbook with number ti:

  • If Petya has visited this room before, he writes down the minute he was in this room last time;
  • Otherwise, Petya writes down an arbitrary non-negative integer strictly less than current minute i.

Initially, Petya was in one of the rooms at minute 0, he didn't write down number t0.

At some point during his wandering Petya got tired, threw out his logbook and went home. Vasya found his logbook and now he is curious: what is the minimum possible number of rooms in Paris catacombs according to Petya's logbook?

Input

The first line contains a single integer n (1 ≤ n ≤ 2·105) — then number of notes in Petya's logbook.

The second line contains n non-negative integers t1, t2, ..., tn (0 ≤ ti < i) — notes in the logbook.

Output

In the only line print a single integer — the minimum possible number of rooms in Paris catacombs.

Examples

Input

Copy

2
0 0

Output

Copy

2

Input

Copy

5
0 1 0 1 3

Output

Copy

3

Note

In the first sample, sequence of rooms Petya visited could be, for example 1 → 1 → 2, 1 → 2 → 1 or 1 → 2 → 3. The minimum possible number of rooms is 2.

In the second sample, the sequence could be 1 → 2 → 3 → 1 → 2 → 1.

题目链接:http://codeforces.com/contest/890/problem/C
题意:有一堆可以互相连通的房间,一个人在0时刻处于1号房间。他在走到下一个房间后会记录下一个数字。数字有两种情况:1、在第i秒走到一个新的房间(以前没走到过)时,就随便记录一个比i小的数。2、要是走到的是以前到过的房间,那么就记录下上次走到那个房间的时间。求出符合描述的最少房间是多少。对于这道题,因为要求房间尽量少,所以优先考虑情况2。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

const int maxn = 2*1e5 + 5;
int a[maxn];

int main()
{
    int n;
    while(~scanf("%d", &n) && n)
    {
        for(int i = 1; i <= n; i++)
            scanf("%d", a+i);
        sort(a+1, a+1+n);
        int ans = 1;
        for(int i = 1; i < n; i++)
            if(a[i] == a[i+1])
                ans++;
        cout << ans << endl; 
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_38295645/article/details/81356570