티스토리 뷰
Problem
Given an integer array nums, return true if there exists a triple of indices (i, j, k) such that i < j < k and nums[i] < nums[j] < nums[k]. If no such indices exists, return false.
Example 1:
Input: nums = [1,2,3,4,5]
Output: true
Explanation: Any triplet where i < j < k is valid.
Example 2:
Input: nums = [5,4,3,2,1]
Output: false
Explanation: No triplet exists.
Example 3:
Input: nums = [2,1,5,0,4,6]
Output: true
Explanation: The triplet (3, 4, 5) is valid because nums[3] == 0 < nums[4] == 4 < nums[5] == 6.
Constraints:
- 1 <= nums.length <= 5 * 10^5
- -2^31 <= nums[i] <= 2^31 - 1
Follow up: Could you implement a solution that runs in O(n) time complexity and O(1) space complexity?
Solution
정수 배열 nums가 주어질 때, nums[i] < nums[j] < nums[k]를 만족하는 세 개의 인덱스 i, j, k가 존재하면 true, 그렇지 않으면 false를 반환하는 문제입니다.
package io.lcalmsky.leetcode.increasing_triplet_subsequence;
public class Solution {
public boolean increasingTriplet(int[] nums) {
int min = Integer.MAX_VALUE;
int mid = Integer.MAX_VALUE;
for (int num : nums) {
if (num <= min) {
min = num;
} else if (num <= mid) {
mid = num;
} else {
return true;
}
}
return false;
}
}
배열을 순차적으로 탐색하면서 가장 작은 수를 min, 가장 작은 수 보다 큰 수를 mid에 저장하고나면 그 수보다 큰 수가 존재할 때 true, 존재하지 않으면 false를 반환하게 됩니다.
Test
package io.lcalmsky.leetcode.increasing_triplet_subsequence;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{1, 2, 3, 4, 5}, true),
() -> test(new int[]{5, 4, 3, 2, 1}, false),
() -> test(new int[]{2, 1, 5, 0, 4, 6}, true)
);
}
private void test(int[] nums, boolean expected) {
Solution solution = new Solution();
boolean actual = solution.increasingTriplet(nums);
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode] 46. Permutations (0) | 2023.06.30 |
---|---|
[LeetCode] 230. Kth Smallest Element in a BST (0) | 2023.06.29 |
[LeetCode] 328. Odd Even Linked List (0) | 2023.06.27 |
[LeetCode] 322. Coin Change (0) | 2023.06.26 |
[LeetCode] 1027. Longest Arithmetic Subsequence (0) | 2023.06.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- proto3
- JPA
- spring boot application
- spring boot jwt
- Jackson
- 스프링부트
- 클린 아키텍처
- Spring Boot Tutorial
- Java
- JSON
- 스프링 데이터 jpa
- r
- 스프링 부트 회원 가입
- 스프링 부트 튜토리얼
- Spring Data JPA
- intellij
- 알고리즘
- 함께 자라기 후기
- @ManyToOne
- Spring Boot
- Linux
- QueryDSL
- Spring Boot JPA
- 스프링 부트 애플리케이션
- 함께 자라기
- leetcode
- 스프링 부트
- spring boot app
- gRPC
- 헥사고날 아키텍처
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함