-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
65 lines (54 loc) Β· 1.71 KB
/
Main.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package Queue.P1966;
import java.io.*;
import java.util.*;
public class Main {
static int T, N, M;
static int[] count;
static Queue<Node> q;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Queue/P1966/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
T = Integer.parseInt(br.readLine());
while (T-- > 0) {
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
count = new int[10];
q = new LinkedList<>();
st = new StringTokenizer(br.readLine());
for (int i = 0; i < N; i++) {
int pr = Integer.parseInt(st.nextToken());
q.offer(new Node(i, pr));
count[pr] ++;
}
sb.append(solve()).append("\n");
}
System.out.print(sb);
}
static int solve() {
int turn = 1;
for (int pr = 9; pr >= 1; pr--) {
while (count[pr]-- > 0) {
while (!q.isEmpty()) {
Node front = q.poll();
if (front.pr == pr) {
if (front.idx == M) return turn;
break;
} else {
q.offer(front);
}
}
turn ++;
}
}
return turn;
}
static class Node {
int idx, pr;
public Node(int idx, int pr) {
this.idx = idx;
this.pr = pr;
}
}
}