F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Copy

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 2055    Accepted Submission(s): 837


Problem Description
Kayzin has a list of integers, initially the list is $a_1,a_2,\ldots,a_n$. He will execute $q$ operations.

For an operation of first type, he will select an interval $[l_i, r_i]$, copy and insert it to the end of the interval.

For an operation of second type, he wonder the $x_i$-th integer of the list.

You need to print the xor sum of all the answers of second type operations.

ps: What is xor? The xor value of two integers is equal to addition in binary without carry.

ps: $n$ is a constant for each test case.
 

Input
First line is an integer $T$, indicating the number of test cases. For each test case:

First line is 2 integers $n,q$, indicating the length of initial list and the number of operations.

Next line is $n$ integers $a_1,a_2,\ldots,a_n$, indicating the initial list.

Next $q$ line, one operation per line. The $i$-th line could be 3 integers ($1,l_i,r_i$), indicating the first type operation, or 2 integers ($2,x_i$), indicating the second type operation.

$1\le T \le 10,$ $1\le n,q\le 10^5,$ $1\le a_i\le 10^9,$ $\sum n \le 10^5,$ $\sum q \le 10^5,$ $1\le x_i,l_i,r_i \le n,$ the sum of the number of first type operations (all test cases together) not exceeds $20000$.
 

Output
For each test case, print one line, indicating the xor sum of the answers.
 

Sample Input
1 5 3 1 2 3 4 5 2 4 1 2 4 2 5
 

Sample Output
6
 

Hint
For first operation, the 4-th integer is 4.
For second operation, $2, 3, 4$ is copied, the list becomes $1,2,3,4,2,3,4,5$.
For third operation, the 5-th integer is 2.
So the result is 2 xor 4 = 6
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-20 14:47:23, Gzip enabled