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
- java
- greedy
- array
- Binary Tree
- simulation
- Counting
- SQL
- Matrix
- bit manipulation
- 파이썬
- 코딩테스트
- implement
- two pointers
- Stack
- Number Theory
- geometry
- Tree
- database
- hash table
- Binary Search
- Data Structure
- 코테
- 구현
- Class
- string
- Method
- dynamic programming
- 자바
- sorting
- Math
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 수열과 구간 쿼리 2 본문
1. Input, Output, Example
queries의 원소는 각각 하나의 query를 나타내며, [s, e, k] 꼴이다. 각 query마다 순서대로 s ≤ i ≤ e인 모든 i에 대해 k보다 크면서 가장 작은 arr[i]를 찾는다.
- 각 쿼리의 순서에 맞게 답을 저장한 배열을 반환
2. Constraint
1) 1 ≤ arr의 길이 ≤ 1,000
2) 0 ≤ arr의 원소 ≤ 1,000,000
3) 1 ≤ queries의 길이 ≤ 1,000
4) 0 ≤ s ≤ e < arr의 길이
5) 0 ≤ k ≤ 1,000,000
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int[] solution(int[] arr, int[][] queries) {
int[] answer = new int[queries.length];
for(int i=0 ; i<queries.length ; i++){
int min = Integer.MAX_VALUE;
boolean find = false;
for(int j=queries[i][0] ; j<=queries[i][1] ; j++)
if(arr[j]>queries[i][2] && arr[j]<min){
find = true; min = arr[j];
}
if(find) answer[i] = min;
else answer[i] = -1;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 날짜 비교하기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 문자열 묶기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 리스트 자르기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 조건 문자열 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 문자열이 몇 번 등장하는지 세기 (0) | 2023.05.01 |