• 593. Valid Square


    package LeetCode_593
    
    /**
     * 593. Valid Square
     * https://leetcode.com/problems/valid-square/
     *
     * Given the coordinates of four points in 2D space, return whether the four points could construct a square.
    The coordinate (x,y) of a point is represented by an integer array with two integers.
    Example:
    Input: p1 = [0,0], p2 = [1,1], p3 = [1,0], p4 = [0,1]
    Output: True
    
    Note:
    1. All the input integers are in the range [-10000, 10000].
    2. A valid square has four equal sides with positive length and four equal angles (90-degree angles).
    3. Input points have no order.
     * */
    class Solution {
        /*
        * solution: HashSet + Geometry, check if Square by:
        * 1. if length of 4 slides are same and the length!=0
         *2. if length of 2 diagonals are same and the length!=0
         *Time complexity: O(1), Space complexity: O(1)
        * */
        fun validSquare(p1: IntArray, p2: IntArray, p3: IntArray, p4: IntArray): Boolean {
            //set for save distance for two point
            val set = HashSet<Int>()
            val arrays = Array(4) { IntArray(2) }
            arrays[0] = p1
            arrays[1] = p2
            arrays[2] = p3
            arrays[3] = p4
            for (i in arrays.indices) {
                for (j in 0 until i) {
                    set.add(distance(arrays[i], arrays[j]))
                }
            }
            return set.size == 2 && !set.contains(0)
        }
    
        /**
         * return the distance of two point by formula: (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2),
         * */
        private fun distance(array1: IntArray, array2: IntArray): Int {
            val x1 = array1[0]
            val y1 = array1[1]
            val x2 = array2[0]
            val y2 = array2[2]
            return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)
        }
    
    }
  • 相关阅读:
    游泳池 (Standard IO)
    Antimonotonicity (Standard IO)
    开花 (Standard IO)
    Wild Number (Standard IO)
    数码问题 (Standard IO)
    输油管道 (Standard IO)
    猴子摘桃 (Standard IO)
    二叉树 (Standard IO)
    iis运行asp.net页面提示“服务器应用程序不可用”的解决办法_.NET.
    SVN安装配置与使用
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/13928842.html
Copyright © 2020-2023  润新知