Problem Solving/Baekjoon
[백준] 6230 Buy One Get One Free - Greedy / Java
graycode
2024. 8. 8. 10:55
• 문제 링크
https://www.acmicpc.net/problem/6230
• 풀이 코드
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Arrays;
public class Main {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int n = read(), m = read();
int[] a = new int[n], b = new int[m];
while (n-- > 0) a[n] = read();
while (m-- > 0) b[m] = read();
Arrays.sort(a);
Arrays.sort(b);
n = a.length - 1;
m = b.length - 1;
while (n >= 0 && m >= 0) if (a[n] > b[m--]) n--;
bw.write(String.valueOf(a.length * 2 - ++n));
bw.flush();
}
private static int read() throws IOException {
int c, n = System.in.read() & 15;
while ((c = System.in.read()) > 32) n = (n << 3) + (n << 1) + (c & 15);
return n;
}
}