- 풀이
testcase만큼 작업을 하는데 크기가 N인 배열이 원으로 되어있을 때 인접한 값과의 차이의 최대값이 최소가 되는 값을 출력하면 되는 문제입니다.
문제는 그리디 방식으로 접근했습니다. 오름차순으로 정렬 후 해당 index 별로 index + 1은 왼쪽, index + 2 오른쪽으로 해준 뒤 차이 값 중 최대값을 초기화 시켜주는 방식으로 구현했습니다.
- 코드
import java.io.IOException;
import java.io.InputStream;
import java.util.*;
public class Main {
static int N, M;
static StringBuilder sb;
static int[] array;
public static void main(String[] args) throws Exception {
SetData();
System.out.println(sb);
}
// 데이터
private static void SetData() throws Exception {
InputReader in = new InputReader(System.in);
int testcase = in.nextInt();
sb = new StringBuilder();
for(int i = 0; i < testcase; i++) {
N = in.nextInt();
array = new int[N];
for(int j = 0; j < N; j++) {
array[j] = in.nextInt();
}
Arrays.sort(array);
int max = 0;
for(int j = 0; j < N-2 ;j++) {
max = Math.max(max, array[j+1] - array[j]);
max = Math.max(max, array[j+2] - array[j]);
}
sb.append(max).append("\n");
}
}
}
class InputReader {
private final InputStream stream;
private final byte[] buf = new byte[8192];
private int curChar, snumChars;
public InputReader(InputStream st) {
this.stream = st;
}
public int read() {
if (snumChars == -1)
throw new InputMismatchException();
if (curChar >= snumChars) {
curChar = 0;
try {
snumChars = stream.read(buf);
} catch (IOException e) {
throw new InputMismatchException();
}
if (snumChars <= 0)
return -1;
}
return buf[curChar++];
}
public int nextInt() {
int c = read();
while (isSpaceChar(c)) {
c = read();
}
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
int res = 0;
do {
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
public long nextLong() {
int c = read();
while (isSpaceChar(c)) {
c = read();
}
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
long res = 0;
do {
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
public int[] nextIntArray(int n) {
int a[] = new int[n];
for (int i = 0; i < n; i++) {
a[i] = nextInt();
}
return a;
}
public String nextLine() {
int c = read();
while (isSpaceChar(c))
c = read();
StringBuilder res = new StringBuilder();
do {
res.appendCodePoint(c);
c = read();
} while (!isEndOfLine(c));
return res.toString();
}
public boolean isSpaceChar(int c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
private boolean isEndOfLine(int c) {
return c == '\n' || c == '\r' || c == -1;
}
}
'algorithm' 카테고리의 다른 글
[BOJ/JAVA] 백준 20207번 : 달력 (0) | 2021.11.21 |
---|---|
[BOJ/JAVA] 백준 1706번 : 크로스워드 (0) | 2021.11.19 |
[BOJ/JAVA] 백준 2636번 : 치즈 (0) | 2021.11.08 |
[BOJ/JAVA] 백준 3197번 : 백조의 호수 (0) | 2021.11.05 |
[BOJ/JAVA] 백준 10159번 : 저울 (0) | 2021.11.04 |