문제링크 : https://www.acmicpc.net/problem/2750
문제 자체는 자바 api를 써서 간단하지만 내부적으로 arrays.sort() 가 어떤 알고리즘을 사용하는지 알고가면 좋을것같다.
(그렇다고 완전 자세히까지는 아니고..)
https://docs.oracle.com/javase/8/docs/api/
공식 문서에서 arrays.sort()를 찾아보면 관련내용이 나오는데
어마어마한 영어로 나오지만 그냥 핵심만 뽑아보자면
Primitive 자료형(int, short, double 등)이면 Dual-Pivot Quicksort 알고리즘은 사용하고
Object 자료형이면 Tim Sort를 사용한다고 한다.
둘다 시간 복잡도는 평균적으로 O(N logN) 이다.
아직 알고리즘 입문자라서 시간복잡도 계산이 확 와닿지 않는다.. 가면갈수록 중요하다는데..
그래서 계속해서 찍먹으로라도 접해보고있다. 하다보면 익숙해지겠지
import java.io.*;
import java.util.*;
public class Main {
static FastReader scan = new FastReader(); // 입력
static StringBuilder sb = new StringBuilder(); //제출답안
static int N;
static int[] list;
static void input() { //입력함수
N = scan.nextInt();
list = new int[N];
for(int i =0; i < N; i++) {
list[i] = scan.nextInt();
}
}
public static void main(String[] args) {
input(); // 입력
Arrays.sort(list);
for(int i = 0; i < N; i++) {
sb.append(list[i]);
sb.append('\n');
}
System.out.println(sb.toString());
}
//류호석 강사님 템플릿
static class FastReader {
BufferedReader br;
StringTokenizer st;
public FastReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public FastReader(String s) throws FileNotFoundException {
br = new BufferedReader(new FileReader(new File(s)));
}
String next() {
while (st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
long nextLong() {
return Long.parseLong(next());
}
double nextDouble() {
return Double.parseDouble(next());
}
String nextLine() {
String str = "";
try {
str = br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
}
'알고리즘' 카테고리의 다른 글
JAVA 백준1015 수열 정렬(BOJ1015) (0) | 2022.03.13 |
---|---|
JAVA 백준2751 수 정렬하기2(BOJ2751)(cpu 초당 연산속도) (0) | 2022.03.12 |
JAVA 백준10825 국영수(BOJ10825) (0) | 2022.03.12 |
JAVA 백준2529 부등호(BOJ2529) (0) | 2022.03.12 |
JAVA 백준1987 알파벳(BOJ1987) (0) | 2022.03.12 |