LeetCode: 335. Self Crossing
题目描述
You are given an array x of n positive numbers. You start at point (0,0) and moves x[0] metres to the north, then x[1] metres to the west, x[2] metres to the south, x[3] metres to the east and so on. In other words, after each move your direction changes counter-clockwise.
Write a one-pass algorithm with O(1) extra space to determine, if your path crosses itself, or not.
Example 1:
┌───┐
│ │
└───┼──>
│
Input: [2,1,1,2]
Output: true
Example 2:
┌──────┐
│ │
│
│
└────────────>
Input: [1,2,3,4]
Output: false
Example 3:
┌───┐
│ │
└───┼>
Input: [1,1,1,1]
Output: true
解题思路
如图,共有三种情况:

AC 代码
func isSelfCrossing(x []int) bool {
for i := 3; i < len(x); i++ {
if x[i-1] <= x[i-3] && x[i] >= x[i-2] {
return true
}
if i >= 4 && x[i-1] == x[i-3] && x[i] + x[i-4] >= x[i-2] {
return true
}
if i >= 5 && x[i-2] > x[i-4] && x[i-1] <= x[i-3] &&
x[i] >= x[i-2] - x[i-4] && x[i-1] + x[i-5] >= x[i-3]{
return true
}
}
return false
}

本文介绍了一种使用O(1)额外空间的一次遍历算法,用于判断由一系列正数构成的路径是否自我交叉。通过分析不同情况下路径的相对位置,提出了解决LeetCode 335题目的高效算法实现。
337

被折叠的 条评论
为什么被折叠?



