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

#F1947. Serega and Fun

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

Serega and Fun

题目描述

D. Serega and Fun
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Serega loves fun. However, everyone has fun in the unique manner. Serega has fun by solving query problems. One day Fedor came up with such a problem.

You are given an array a consisting of n positive integers and queries to it. The queries can be of two types:

  1. Make a unit cyclic shift to the right on the segment from l to r (both borders inclusive). That is rearrange elements of the array in the following manner:
    a[l],a[l+1],...,a[r-1],a[r]→a[r],a[l],a[l+1],...,a[r-1].
  2. Count how many numbers equal to k are on the segment from l to r (both borders inclusive).

Fedor hurried to see Serega enjoy the problem and Serega solved it really quickly. Let's see, can you solve it?

Input

The first line contains integer n (1≤n≤105) − the number of elements of the array. The second line contains n integers a[1],a[2],...,a[n] (1≤a[i]≤n).

The third line contains a single integer q (1≤q≤105) − the number of queries. The next q lines contain the queries.

As you need to respond to the queries online, the queries will be encoded. A query of the first type will be given in format: 1 l'i r'i. A query of the second type will be given in format: 2 l'i r'i k'i. All the number in input are integer. They satisfy the constraints: 1≤l'i,r'i,k'in.

To decode the queries from the data given in input, you need to perform the following transformations:

li=((l'i+lastans-1)modn)+1;ri=((r'i+lastans-1)modn)+1;ki=((k'i+lastans-1)modn)+1.

Where lastans is the last reply to the query of the 2-nd type (initially, lastans=0). If after transformation li is greater than ri, you must swap these values.

Output

For each query of the 2-nd type print the answer on a single line.

Examples
Input
7
6 6 2 7 4 2 5
7
1 3 6
2 2 4 2
2 2 4 7
2 2 2 5
1 2 6
1 1 4
2 1 7 3
Output
2
1
0
0
Input
8
8 4 2 2 7 7 8 8
8
1 8 8
2 8 1 7
1 8 1
1 7 3
2 8 8 3
1 1 4
1 2 7
1 4 5
Output
2
0

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