跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2302. Jeff and Removing Periods

    ID: 2308 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>数据结构挑战难度共享题库Codeforces英文题面题目来源题面语言

Jeff and Removing Periods

题目描述

D. Jeff and Removing Periods
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Cosider a sequence, consisting of n integers: a1, a2, ..., an. Jeff can perform the following operation on sequence a:

  • take three integers v, t, k (1≤v,tn;0≤k;v+tkn), such that av = av+t, av+t = av+2t, ..., av+t(k-1) = av+tk;
  • remove elements av, av+t, ..., av+t·k from the sequence a, the remaining elements should be reindexed a1,a2,...,an-k-1.
  • permute in some order the remaining elements of sequence a.

A beauty of a sequence a is the minimum number of operations that is needed to delete all elements from sequence a.

Jeff's written down a sequence of m integers b1, b2, ..., bm. Now he wants to ask q questions. Each question can be described with two integers li,ri. The answer to the question is the beauty of sequence bli, bli+1, ..., bri. You are given the sequence b and all questions. Help Jeff, answer all his questions.

Input

The first line contains integer m (1≤m≤105). The next line contains m integers b1, b2, ..., bm (1≤bi≤105).

The third line contains integer q (1≤q≤105) − the number of questions. The next q lines contain pairs of integers, i-th of them contains a pair of integers li, ri (1≤lirim) − the description of i-th question.

Output

In q lines print the answers to Jeff's queries. Print the answers according to the order of questions in input.

Examples
Input
5
2 2 1 1 2
5
1 5
1 1
2 2
1 3
2 3
Output
2
1
1
2
2
Input
10
2 1 3 3 3 3 1 3 1 1
10
4 8
2 10
1 10
4 4
1 3
2 4
6 7
1 9
2 5
1 1
Output
2
3
3
1
3
2
2
3
2
1

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1915 题。保留原作者与原赛事署名。