Skip to content

Commit

Permalink
Create Aggressive cows
Browse files Browse the repository at this point in the history
  • Loading branch information
dishathakurata authored Dec 17, 2024
1 parent df236d4 commit ba81408
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions Aggressive cows
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
//Aggressive cows

import java.io.*;
import java.util.*;

class GFG {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int tc = Integer.parseInt(br.readLine().trim());

while(tc-- > 0) {
String[] str = br.readLine().trim().split(" ");
int[] a = new int[str.length];

for(int i = 0; i < str.length; i++) {
a[i] = Integer.parseInt(str[i]);
}

String[] nk = br.readLine().trim().split(" ");
int k = Integer.parseInt(nk[0]);
Solution sln = new Solution();
int ans = sln.aggressiveCows(a, k);
System.out.println(ans);
System.out.println("~");
}
}
}

class Solution {
public static int aggressiveCows(int[] stalls, int k) {
Arrays.sort(stalls);
int res = 0;
int lo = 1;
int hi = stalls[stalls.length - 1] - stalls[0];

while(lo <= hi) {
int mid = lo + (hi - lo) / 2;

if(check(stalls, k, mid)) {
res = mid;
lo = mid + 1;
}
else {
hi = mid - 1;
}
}

return res;
}

static boolean check(int[] stalls, int k, int dist) {
int cnt = 1;
int prev = stalls[0];

for(int i = 1; i < stalls.length; i++) {
if(stalls[i] - prev >= dist) {
prev = stalls[i];
cnt++;
}
}

return (cnt >= k);
}
}

0 comments on commit ba81408

Please sign in to comment.