LeetCode-in-Java

3809. Best Reachable Tower

Medium

You are given a 2D integer array towers, where towers[i] = [xi, yi, qi] represents the coordinates (xi, yi) and quality factor qi of the ith tower.

You are also given an integer array center = [cx, cy] representing your location, and an integer radius.

A tower is reachable if its Manhattan distance from center is less than or equal to radius.

Among all reachable towers:

The Manhattan Distance between two cells (xi, yi) and (xj, yj) is |xi - xj| + |yi - yj|.

A coordinate [xi, yi] is lexicographically smaller than [xj, yj] if xi < xj, or xi == xj and yi < yj.

|x| denotes the absolute value of x.

Example 1:

Input: towers = [[1,2,5], [2,1,7], [3,1,9]], center = [1,1], radius = 2

Output: [3,1]

Explanation:

All towers are reachable. The maximum quality factor is 9, which corresponds to tower [3, 1].

Example 2:

Input: towers = [[1,3,4], [2,2,4], [4,4,7]], center = [0,0], radius = 5

Output: [1,3]

Explanation:

Among the reachable towers, the maximum quality factor is 4. Both [1, 3] and [2, 2] have the same quality, so the lexicographically smaller coordinate is [1, 3].

Example 3:

Input: towers = [[5,6,8], [0,3,5]], center = [1,2], radius = 1

Output: [-1,-1]

Explanation:

No tower is reachable within the given radius, so [-1, -1] is returned.

Constraints:

Solution

public class Solution {
    public int[] bestTower(int[][] towers, int[] center, int radius) {
        int bestX = -1;
        int bestY = -1;
        int bestQ = -1;
        int cx = center[0];
        int cy = center[1];
        for (int[] t : towers) {
            int x = t[0];
            int y = t[1];
            int q = t[2];
            long dx = Math.abs((long) x - cx);
            long dy = Math.abs((long) y - cy);
            if (dx + dy <= radius
                    && (q > bestQ
                            || (q == bestQ
                                    && (bestX == -1 || x < bestX || (x == bestX && y < bestY))))) {
                bestQ = q;
                bestX = x;
                bestY = y;
            }
        }
        return bestQ == -1 ? new int[] {-1, -1} : new int[] {bestX, bestY};
    }
}