import java.util.*; public class Main { public Main() { } public boolean getMinK(int n, Integer[] pInputArray, int k, Integer[] pOutputArray) { if (k > n) return false; PriorityQueue<Integer> pq = new PriorityQueue<>(k, new Comparator<Integer>(){ public int compare(Integer o1, I...