자바칩
[백준 / Java] 1138: 한 줄로 서기 (구현) 본문
728x90
난이도: Silver 2
문제: https://www.acmicpc.net/problem/1138
주석에 써 놓은 설명만 보아도 이해가 될 것이다.
바로 코드를 보자.
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
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class P1138_한줄로서기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine()); // 사람의 수
StringTokenizer st = new StringTokenizer(br.readLine());
int[] count = new int[N + 1];
ArrayList<Integer> line = new ArrayList<>();
for (int i = 1; i <= N; i++) {
// 키가 i인 사람보다 큰 사람이 왼쪽에 count[i]명
count[i] = Integer.parseInt(st.nextToken());
}
// 4보다 큰 애는 앞에 0개 => line.add(0, 4) => 4
// 3보다 큰 애는 앞에 1개 => line.add(1, 3) => 4 3
// 2보다 큰 애는 앞에 1개 => line.add(1, 2) => 4 2 3
// 1보다 큰 애는 앞에 2개 => line.add(2, 1) => 4 2 1 3
for (int i = N; i >= 1; i--) {
line.add(count[i], i); // count[i]번째로 키가 i인 사람 줄 세우기
}
for (int i = 0; i < N; i++) {
System.out.print(line.get(i) + " "); // 줄을 선 순서대로 키 출력
}
}
}
|
cs |
'알고리즘 > 백준' 카테고리의 다른 글
[백준 / Java] 12852: 1로 만들기 2 (DP) (0) | 2024.06.07 |
---|---|
[백준 / Java] 3085: 사탕 게임 (브루트포스) (1) | 2024.06.03 |
[백준 / Java] 16234: 인구 이동 (BFS) (0) | 2024.05.23 |
[백준 / Java] 2636: 치즈 (BFS) (0) | 2024.05.16 |
[백준 / Java] 3190: 뱀 (시뮬레이션, 자료구조) (2) | 2024.05.15 |