Skip to content

Latest commit

 

History

History
194 lines (152 loc) · 5.66 KB

File metadata and controls

194 lines (152 loc) · 5.66 KB

English Version

题目描述

给你一个在 X-Y 平面上的点构成的数据流。设计一个满足下述要求的算法:

  • 添加 一个在数据流中的新点到某个数据结构中可以添加 重复 的点,并会视作不同的点进行处理。
  • 给你一个查询点,请你从数据结构中选出三个点,使这三个点和查询点一同构成一个 面积为正轴对齐正方形统计 满足该要求的方案数目

轴对齐正方形 是一个正方形,除四条边长度相同外,还满足每条边都与 x-轴 或 y-轴 平行或垂直。

实现 DetectSquares 类:

  • DetectSquares() 使用空数据结构初始化对象
  • void add(int[] point) 向数据结构添加一个新的点 point = [x, y]
  • int count(int[] point) 统计按上述方式与点 point = [x, y] 共同构造 轴对齐正方形 的方案数。

 

示例:

输入:
["DetectSquares", "add", "add", "add", "count", "count", "add", "count"]
[[], [[3, 10]], [[11, 2]], [[3, 2]], [[11, 10]], [[14, 8]], [[11, 2]], [[11, 10]]]
输出:
[null, null, null, null, 1, 0, null, 2]

解释: DetectSquares detectSquares = new DetectSquares(); detectSquares.add([3, 10]); detectSquares.add([11, 2]); detectSquares.add([3, 2]); detectSquares.count([11, 10]); // 返回 1 。你可以选择: // - 第一个,第二个,和第三个点 detectSquares.count([14, 8]); // 返回 0 。查询点无法与数据结构中的这些点构成正方形。 detectSquares.add([11, 2]); // 允许添加重复的点。 detectSquares.count([11, 10]); // 返回 2 。你可以选择: // - 第一个,第二个,和第三个点 // - 第一个,第三个,和第四个点

 

提示:

  • point.length == 2
  • 0 <= x, y <= 1000
  • 调用 addcount总次数 最多为 5000

解法

哈希表实现。

Python3

class DetectSquares:
    def __init__(self):
        self.mp = defaultdict(Counter)

    def add(self, point: List[int]) -> None:
        x, y = point
        self.mp[x][y] += 1

    def count(self, point: List[int]) -> int:
        x, y = point
        ans = 0
        if x not in self.mp:
            return ans
        xcnt = self.mp[x]

        for x1, counter in self.mp.items():
            if x1 != x:
                d = x1 - x
                ans += xcnt[y + d] * counter[y] * counter[y + d]
                ans += xcnt[y - d] * counter[y] * counter[y - d]
        return ans

Java

class DetectSquares {
    private Map<Integer, Map<Integer, Integer>> mp = new HashMap<>();

    public DetectSquares() {
    }

    public void add(int[] point) {
        int x = point[0], y = point[1];
        if (!mp.containsKey(x)) {
            mp.put(x, new HashMap<>());
        }
        mp.get(x).put(y, mp.get(x).getOrDefault(y, 0) + 1);
    }

    public int count(int[] point) {
        int x = point[0], y = point[1];
        int ans = 0;
        if (!mp.containsKey(x)) {
            return ans;
        }
        Map<Integer, Integer> xcnt = mp.get(x);
        for (Map.Entry<Integer, Map<Integer, Integer>> e : mp.entrySet()) {
            int x1 = e.getKey();
            Map<Integer, Integer> counter = e.getValue();
            if (x1 != x) {
                int d = x1 - x;
                ans += xcnt.getOrDefault(y + d, 0) * counter.getOrDefault(y, 0)
                    * counter.getOrDefault(y + d, 0);
                ans += xcnt.getOrDefault(y - d, 0) * counter.getOrDefault(y, 0)
                    * counter.getOrDefault(y - d, 0);
            }
        }
        return ans;
    }
}

/**
 * Your DetectSquares object will be instantiated and called as such:
 * DetectSquares obj = new DetectSquares();
 * obj.add(point);
 * int param_2 = obj.count(point);
 */

C++

class DetectSquares {
public:
    unordered_map<int, unordered_map<int, int>> mp;

    DetectSquares() {
    }

    void add(vector<int> point) {
        int x = point[0], y = point[1];
        ++mp[x][y];
    }

    int count(vector<int> point) {
        int x = point[0], y = point[1];
        int ans = 0;
        if (!mp.count(x)) return ans;
        auto xcnt = mp[x];
        for (auto e : mp) {
            int x1 = e.first;
            auto counter = e.second;
            if (x1 != x) {
                int d = x1 - x;
                ans += xcnt[y + d] * counter[y] * counter[y + d];
                ans += xcnt[y - d] * counter[y] * counter[y - d];
            }
        }
        return ans;
    }
};

/**
 * Your DetectSquares object will be instantiated and called as such:
 * DetectSquares* obj = new DetectSquares();
 * obj->add(point);
 * int param_2 = obj->count(point);
 */

...