on
★ [백준][Java] 2110번 공유기 설치 (이진탐색)
★ [백준][Java] 2110번 공유기 설치 (이진탐색)
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.Arrays; public class Main { private static BufferedReader br = new BufferedReader( new InputStreamReader( System . in )); private static BufferedWriter bw = new BufferedWriter( new OutputStreamWriter( System . out )); public static void main( String [] args) throws IOException{ String [] str = br.readLine(). split ( " " ); int N = stoi(str[ 0 ]); int C = stoi(str[ 1 ]); int [] house = new int [N]; for ( int i = 0 ; i < N; i + + ) house[i] = stoi(br.readLine()); Arrays.sort(house); int left = 1 ; int right = house[house. length - 1 ] - house[ 0 ]; int res = 0 ; while (left < = right) { int mid = (left + right) / 2 ; int nextModem = house[ 0 ] + mid; int cnt = 1 ; for ( int i : house) { if (i > = nextModem) { cnt + + ; nextModem = i + mid; } } if (cnt < C) right = mid - 1 ; else { left = mid + 1 ; res = mid; } } System . out . println (res); // bw.write(""); // bw.flush(); // bw.close(); } private static int stoi( String input) { return Integer. parseInt (input); } } Colored by Color Scripter
from http://aig2029.tistory.com/344 by ccl(A) rewrite - 2021-10-16 07:02:10