📌 문제
https://www.acmicpc.net/problem/16466
📌 코드
package baekjoon;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Q16466 { // 콘서트
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int testCase = scanner.nextInt();
List<Integer> list = new ArrayList<>();
for (int i = 0; i < testCase; i++) { // 1
list.add(scanner.nextInt());
}
Collections.sort(list); // 2
int count = 0;
for (int i = 0; i < testCase; i++) {
if (list.get(i) != i + 1) { // 3
System.out.println(i + 1); // 4
count++;
break;
}
}
if (count == 0) { 5
System.out.println(testCase + 1);
}
}
}
📌 풀이
- 숫자 입력
- 제일 작은 값 출력을 위한 오름차순으로 정렬
- list 0 번째 index부터 ~ i + 1 이 같지 않을 때까지 비교 ex) 4!= (2) + 1 = 3 같지 않음
- i + 1 해서 해당하는 값 출력하고 숫자가 모두 같을 수 있으니 count 변수 생성
- count 가 0 이면 맨뒤에 숫자 + 1 해서 출력
'Algorithm' 카테고리의 다른 글
[Java] 유클리드 호제법 (Euclidean Algorithm) (0) | 2023.04.29 |
---|---|
[Java] 백준 2161 : 카드 1 (0) | 2022.06.28 |
[Java] 백준 3028 : 창영마을 (0) | 2022.06.21 |
[Java] 백준 1032 : 명령 프롬프트 (0) | 2022.06.08 |
[Java] 백준 1157 : 단어 공부 (0) | 2022.06.04 |