Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IT
- nginx
- SQL 처리
- 장범준
- 아이유
- 기타
- 6학년 8반 1분단
- 핑거스타일
- 악보
- 슬픔의 후에
- 오라클
- 니가 참 좋아
- index
- 천공의 시간
- 오라클 아키텍처
- 신입
- 인덱스
- I'm fine thank you
- DBMS
- db
- 데이터베이스
- 말 더듬
- DBMS 구성요소
- 스위트라떼
- 개발자
- 봄 사랑 벚꽃 말고
- 레이디스코드
- oracle
- Inside Of Me
- 러블리즈
Archives
취미로 음악을 하는 개발자
[Java] 프로그래머스 정렬, K번째 수 본문
728x90
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 | import java.util.Arrays; // K번째 수 public class K { public static int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; // 결과 개수 int [] index; // 답을 찾을 배열 int first, last, target; // first부터 last까지 있는 원소 중 target번째 int arr = 0, idx = 0; // arr: answer 배열의 인덱스, idx: for (int i = 0; i < commands.length; i++) { first = commands[i][0]; last = commands[i][1]; target = commands[i][2]; index = new int[last - first+1]; // 배열 크기를 정하고 원소 삽입 for (int j = first-1; j < last; j++) index[idx++] = array[j]; idx = 0; // 다음을 위한 발판 Arrays.sort(index); answer[arr++] = index[target-1]; // 찾음 } return answer; } public static void main(String[] args) { System.out.println(solution(new int[] {1, 5, 2, 6, 3, 7, 4}, new int[][] {{2,5,3},{4,4,1},{1,7,3}})); } } | cs |
https://programmers.co.kr/learn/courses/30/lessons/42748
'공대인 > Programmers' 카테고리의 다른 글
[Java] 프로그래머스 정렬, H-Index (1) | 2019.12.03 |
---|---|
[Java] 프로그래머스 스택/큐, 주식가격 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 쇠막대기 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 기능개발 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 다리를 지나는 트럭 (0) | 2019.12.03 |
Comments