-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathSolution.java
35 lines (30 loc) · 990 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// github.com/RodneyShag
import java.util.Scanner;
import java.util.ArrayList;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int N = scan.nextInt();
int Q = scan.nextInt();
int lastAns = 0;
/* Create 2-D ArrayList */
ArrayList<ArrayList<Integer>> lists = new ArrayList();
for (int i = 0; i < N; i++) {
lists.add(new ArrayList<Integer>());
}
/* Perform Q Queries */
for (int i = 0; i < Q; i++) {
int q = scan.nextInt();
int x = scan.nextInt();
int y = scan.nextInt();
ArrayList<Integer> seq = lists.get((x ^ lastAns) % N);
if (q == 1) {
seq.add(y);
} else if (q == 2) {
lastAns = seq.get(y % seq.size());
System.out.println(lastAns);
}
}
scan.close();
}
}