티스토리 뷰
Problem
An integer array is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the same.
For example, [1,3,5,7,9], [7,7,7,7], and [3,-1,-5,-9] are arithmetic sequences.
Given an integer array nums, return the number of arithmetic subarrays of nums.
A subarray is a contiguous subsequence of the array.
Example 1:
Input: nums = [1,2,3,4]
Output: 3
Explanation: We have 3 arithmetic slices in nums: [1, 2, 3], [2, 3, 4] and [1,2,3,4] itself.
Example 2:
Input: nums = [1]
Output: 0
Constraints:
- 1 <= nums.length <= 5000
- -1000 <= nums[i] <= 1000
Solution
정수 배열이 3개 이상의 요소로 구성되고 연속되는 두 요소의 차이가 동일한 경우 arithmetic
이라고 부릅니다.
정수 배열이 주어질 때 arithmetic 부분 배열의 개수를 구하는 문제입니다.
부분 배열은 주어진 배열의 연속된 시퀀스로 구성됩니다.
부분 배열의 개수를 구하는 원리를 생각하면 매우 간단히 해결되는 문제입니다.
[1, 2, 3, 4, 5]로 구성된 배열이 있다고 가정하면,
[1, 2, 3]
[2, 3, 4]
[3, 4, 5]
[1, 2, 3, 4]
[2, 3, 4, 5]
[1, 2, 3, 4, 5]
이렇게 원소가 세 개일 때 3개, 네 개일 때 2개, 다섯 개일 때 1개 총 6개의 arithmetic 부분 배열을 구할 수 있고, 연속된 부분 배열이 존재한다면 부분 배열의 개수가 1씩 증가하는 것을 의미합니다.
public class Solution {
public int numberOfArithmeticSlices(int[] A) {
int current = 0, sum = 0;
for (int i = 2; i < A.length; i++) {
if (A[i] - A[i - 1] == A[i - 1] - A[i - 2]) {
current += 1;
sum += current;
} else {
current = 0;
}
}
return sum;
}
}
Test
package io.lcalmsky.leetcode.arithmetic_slices;
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
void givenArray_whenSplit_thenArithmeticSlices() {
assertAll(
() -> test(new int[]{1, 2, 3, 4}, 3)
);
}
private void test(int[] given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.numberOfArithmeticSlices(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
2. Add Two Numbers (0) | 2022.03.18 |
---|---|
82. Remove Duplicates from Sorted List II (0) | 2022.03.17 |
141. Linked List Cycle (0) | 2022.03.14 |
21. Merge Two Sorted Lists (0) | 2022.03.13 |
740. Delete and Earn (0) | 2022.03.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- QueryDSL
- 스프링 부트
- Spring Data JPA
- Java
- JPA
- Linux
- leetcode
- Spring Boot Tutorial
- Spring Boot JPA
- 스프링 부트 애플리케이션
- @ManyToOne
- r
- 헥사고날 아키텍처
- Spring Boot
- 스프링 데이터 jpa
- 스프링 부트 회원 가입
- gRPC
- spring boot app
- Jackson
- JSON
- 알고리즘
- spring boot application
- 스프링 부트 튜토리얼
- 함께 자라기
- 함께 자라기 후기
- intellij
- 클린 아키텍처
- proto3
- 스프링부트
- spring boot jwt
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함