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
- database
- simulation
- 자바
- Counting
- geometry
- bit manipulation
- 구현
- string
- 코테
- greedy
- java
- 파이썬
- array
- Class
- Matrix
- Tree
- implement
- Method
- sorting
- two pointers
- Binary Tree
- dynamic programming
- Math
- Binary Search
- Data Structure
- Stack
- SQL
- 코딩테스트
- Number Theory
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Medium] 503. Next Greater Element II 본문
1. Input
1) int[] nums
2. Output
1) nums가 순환 배열이라고 할 때, i번째 이후의 요소들 중 nums[i]보다 큰 첫 번째 수를 차례대로 담은 배열을 반환
2) 그런 수를 찾지 못했다면 -1을 저장
3. Constraint
1) 1 <= nums.length <= 10^4
2) - 10^9 <= nums[i] <= 10^9
4. Example
Input: nums = [1,2,1] -> Output: [2,-1,2]
Input: nums = [1,2,3,4,3] -> Output: [2,3,4,-1,4]
5. Code
1) 첫 코드(2023/02/27)
int[] answer = new int[nums.length];
for(int i=0 ; i<nums.length ; i++){
answer[i] = -1;
boolean find = false;
for(int j=i+1 ; j<nums.length ; j++){
if(nums[j]>nums[i]){
answer[i] = nums[j]; find = true; break;
}
}
if(!find){
for(int j=0 ; j<i ; j++){
if(nums[j]>nums[i]){
answer[i] = nums[j]; break;
}
}
} // !find
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Medium] 532. K-diff Pairs in an Array (0) | 2023.03.02 |
---|---|
[LeetCode/Easy] 2566. Maximum Difference by Remapping a Digit (0) | 2023.03.01 |
[LeetCode/Easy] 2574. Left and Right Sum Differences (0) | 2023.02.27 |
[LeetCode/Easy] 496. Next Greater Element I (0) | 2023.02.26 |
[LeetCode/Easy] 492. Construct the Rectangle (0) | 2023.02.26 |