-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboj1021.java
More file actions
59 lines (47 loc) · 1.46 KB
/
boj1021.java
File metadata and controls
59 lines (47 loc) · 1.46 KB
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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.StringTokenizer;
public class boj1021 {
static int N, M;
static int[] num;
static LinkedList<Integer> list;
public static void main(String[] args) throws IOException {
input();
pro();
}
static void input() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
list = new LinkedList<>();
num = new int[M];
for (int i = 1; i <= N; i++) {
list.add(i);
}
st = new StringTokenizer(br.readLine());
for (int i = 0; i < M; i++) {
num[i] = Integer.parseInt(st.nextToken());
}
}
static void pro() {
int ans = 0;
for (int i = 0; i < M; i++) {
while (true) {
if (list.getFirst() == num[i]) {
list.pollFirst();
break;
}
if (list.indexOf(num[i]) <= list.size() / 2) {
list.addLast(list.pollFirst());
} else {
list.addFirst(list.pollLast());
}
ans++;
}
}
System.out.println(ans);
}
}