ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

335. Self Crossing

2019-05-04 17:39:44  阅读:314  来源: 互联网

标签:crosses 335 Self metres && Crossing Input line true


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 

 

Approach #1: Math. [Java]

class Solution {
    public boolean isSelfCrossing(int[] x) {
        if (x.length < 4) return false;
        for (int i = 3; i < x.length; ++i) {
            if (x[i] >= x[i-2] && x[i-3] >= x[i-1]) return true;
            if (i >= 4) {
                if (x[i-3] == x[i-1] && x[i] + x[i-4] >= x[i-2]) return true;
            }
            if (i >= 5) {
                if (x[i-2] >= x[i-4] && x[i-1] + x[i-5] >= x[i-3] && x[i] >= x[i-2] - x[i-4] && x[i-1] <= x[i-3]) 
                    return true;
            }
        }
        return false;
    }
}

  

Analysis:

Categarize the self-crossing scenarios, there are 3 of them:

1. Fourth line crosses first line and works for fifth line crosses second and so on...

2. Fifth line meets first line and works for the lines after

3. Sixth line crosses first line and works for the lines after.

 

Reference:

https://leetcode.com/problems/self-crossing/discuss/79131/Java-Oms-with-explanation

 

标签:crosses,335,Self,metres,&&,Crossing,Input,line,true
来源: https://www.cnblogs.com/ruruozhenhao/p/10809104.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有