LeetCodeでこの問題を解いています。→218. The Skyline Problem
この問題の解答例の一つとして以下のコードがあるのですが、PriorityQueueについて質問させてください。
java
1class Solution { 2 public List<List<Integer>> getSkyline(int[][] buildings) { 3 Map<Integer, List<int[]>> cps = new TreeMap<>(); 4 for (int[] b : buildings) { 5 6 cps.computeIfAbsent(b[0], (k) -> new ArrayList<int[]>()).add(b); 7 cps.computeIfAbsent(b[1], (k) -> new ArrayList<int[]>()).add(b); 8 } 9 10 11 PriorityQueue<int[]> pq = new PriorityQueue<>((b2, b1) -> Integer.compare(b1[2], b2[2])); 12 List<List<Integer>> ret = new ArrayList<>(); 13 for (Integer x : cps.keySet()) { 14 for (int[] b : cps.get(x)) { 15 if (x == b[0]) { 16 pq.add(b); 17 } else { 18 pq.remove(b); 19 } 20 } 21 if (pq.isEmpty()) { 22 ret.add(Arrays.asList(x, 0)); 23 } else if (ret.isEmpty() || pq.peek()[2] != ret.get(ret.size() - 1).get(1)) { 24 ret.add(Arrays.asList(x, pq.peek()[2])); 25 } 26 } 27 return ret; 28 } 29}
こちらの部分に関して、
java
1 PriorityQueue<int[]> pq = new PriorityQueue<>((b1, b2) -> Integer.compare(b2[2], b1[2]));
pqで追加された値の中で大きい値を.peekを実施したときに返していることはわかったのですが、なぜComparatorをこのように書くのでしょうか。
特に、(b1, b2)と(b2[2], b1[2]))でb1,b2の順番が逆なのはなぜなのでしょうか。
デバックしてみて(b2[2], b1[2])を(b1[2], b2[2]と逆にすると動かないのは確認したのですが、、、
Integer.compare を調べると
Integer.compare パラメータ: x - 比較する最初のint y - 比較する2番目のint 戻り値: x == yの場合は値0、x < yの場合は0より小さい値、x> yの場合は0より大きい値 */
という記述がありました。
つまり追加された値b2[2]とb1[2]を比較?して、0か-1か1かを返しているのと思うのですが、PriorityQueueが勝手にそのInteger.compareの戻り値に応じて新しく来た値を並べ替えている、ということでしょうか
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/28 08:16