티스토리 뷰
Problem
Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence.
You must write an algorithm that runs in O(n) time.
Example 1:
Input: nums = [100,4,200,1,3,2]
Output: 4
Explanation: The longest consecutive elements sequence is [1, 2, 3, 4]. Therefore its length is 4.
Example 2:
Input: nums = [0,3,7,2,5,8,4,6,0,1]
Output: 9
Constraints:
- 0 <= nums.length <= 10^5
- -10^9 <= nums[i] <= 10^9
Solution
정렬되지 않은 정수 배열이 주어질 때 가장 길게 연속되는 부분 배열의 길이를 구하는 문제입니다.
import java.util.Arrays;
public class Solution {
public int longestConsecutive(int[] nums) {
if (nums.length == 0) {
return 0;
}
Arrays.sort(nums);
int longest = 1;
int current = 1;
for (int i = 1; i < nums.length; i++) {
int currentNumber = nums[i];
int previousNumber = nums[i - 1];
if (currentNumber == previousNumber) {
continue;
}
if (currentNumber == previousNumber + 1) { // (1)
current += 1; // (2)
} else { // (3)
longest = Math.max(longest, current); // (4)
current = 1; // (5)
}
}
return Math.max(longest, current);
}
}
(1) 현재 숫자와 이전 숫자가 연속될 때
(2) 현재 세고있는 길이를 1 증가시킵니다.
(3) 연속되지 않을 경우
(4) max 값을 갱신합니다.
(5) 현재 길이를 1로 초기화 합니다.
Test
package io.lcalmsky.leetcode.longest_consecutive_sequence;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
public void givenArray_whenGetLongestConsecutiveSequence_thenCorrect() {
assertAll(
() -> test(new int[]{100, 4, 200, 1, 3, 2}, 4),
() -> test(new int[]{0, 3, 7, 2, 5, 8, 4, 6, 0, 1}, 9)
);
}
private void test(int[] given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.longestConsecutive(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
92. Reverse Linked List II (0) | 2022.07.22 |
---|---|
473. Matchsticks to Square (0) | 2022.07.16 |
128. Longest Consecutive Sequence (0) | 2022.07.09 |
135. Candy (0) | 2022.07.08 |
462. Minimum Moves to Equal Array Elements II (0) | 2022.07.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- gRPC
- 스프링부트
- Spring Data JPA
- Spring Boot
- r
- intellij
- @ManyToOne
- Spring Boot Tutorial
- JSON
- JPA
- 스프링 부트
- 스프링 부트 회원 가입
- proto3
- 스프링 데이터 jpa
- spring boot application
- leetcode
- spring boot app
- Java
- 함께 자라기 후기
- QueryDSL
- 스프링 부트 애플리케이션
- Jackson
- 스프링 부트 튜토리얼
- 클린 아키텍처
- 알고리즘
- 함께 자라기
- spring boot jwt
- 헥사고날 아키텍처
- Spring Boot JPA
- Linux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함