forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_611.java
54 lines (47 loc) · 1.47 KB
/
_611.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.fishercoder.solutions;
import java.util.Arrays;
/**
* 611. Valid Triangle Number
* Given an array consists of non-negative integers,
* your task is to count the number of triplets chosen
* from the array that can make triangles if we take them as side lengths of a triangle.
Example 1:
Input: [2,2,3,4]
Output: 3
Explanation:
Valid combinations are:
2,3,4 (using the first 2)
2,3,4 (using the second 2)
2,2,3
Note:
The length of the given array won't exceed 1000.
The integers in the given array are in the range of [0, 1000].
*/
public class _611 {
public static class Solution1 {
/**
* Rule: among three sides, we need to find whether the longest of the three is smaller than the sum of the two shorter one.
* If so, then these three could form a valid triangle.
*/
public int triangleNumber(int[] nums) {
if (nums == null || nums.length == 0) {
return 0;
}
Arrays.sort(nums);
int triplets = 0;
for (int i = 2; i < nums.length; i++) {
int left = 0;
int right = i - 1;
while (left < right) {
if (nums[i] < nums[left] + nums[right]) {
triplets += (right - left);
right--;
} else {
left++;
}
}
}
return triplets;
}
}
}