Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Math
- Binary Tree
- java
- database
- Binary Search
- string
- bit manipulation
- 파이썬
- implement
- simulation
- 구현
- Tree
- 코딩테스트
- 자바
- sorting
- Class
- Matrix
- Stack
- 코테
- SQL
- greedy
- Counting
- Number Theory
- two pointers
- Method
- array
- geometry
- dynamic programming
- Data Structure
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1827. Minimum Operations to Make the Array Increasing 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1827. Minimum Operations to Make the Array Increasing
무지맘 2023. 1. 5. 22:541. Input
1) 정수 배열 nums
2. Output
1) 1회에 nums의 요소 중 1개를 1만큼 증가시키는 연산를 반복해 계속 증가(nums[i]<nums[i+1])하는 배열을 만드려고 할 때 필요한 연산의 최소 횟수
3. Constraint
1) 1 <= nums.length <= 5000
2) 1 <= nums[i] <= 10&4
4. Example
Input: nums = [1,1,1] -> Output: 3
설명:
- nums[1] 증가 -> [1,2,1]
- nums[2] 증가 -> [1,2,2]
- nums[2] 증가 -> [1,2,3]
- 따라서 최소 횟수는 3번이다.
5. Code
1) 첫 코드(2022/06/10)
int count = 0;
for(int i=0 ; i<nums.length-1 ; i++){
if(nums[i] >= nums[i+1]){
int x = nums[i] - nums[i+1] + 1;
nums[i+1] += x;
count += x;
}
}
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1837. Sum of Digits in Base K (0) | 2023.01.05 |
---|---|
[LeetCode/Easy] 1832. Check if the Sentence Is Pangram (0) | 2023.01.05 |
[LeetCode/Easy] 1822. Sign of the Product of an Array (0) | 2023.01.05 |
[LeetCode/Easy] 20. Valid Parentheses (0) | 2023.01.05 |
[LeetCode/Easy] 1816. Truncate Sentence (0) | 2023.01.04 |