일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- throws
- Transition
- Navigation Component
- 심리학
- 여행
- Shared Elements
- Recylcer
- 버킷리스트
- 치유
- 회피
- abstract
- 취약점
- Android
- ㅇ
- 심리여행
- javap
- static
- opcode
- 일상회피
- HelloWorld
- bytecode 분석
- Interface
- IMPLEMENT
- 보안취약점
- bytecode
- 여행계획
- 보안
- jvm
- extends
- 일상탈출
Archives
- Today
- Total
패스트터틀
(Baekjoon) GreedyAlgorithm - (15) 한 줄로 서기 본문
https://www.acmicpc.net/problem/1138
232010 일경우 반대부터 수를 넣는다.
for (int i = N ; i >= 1; i--) {
list.add(height[i],i);
}
0 -> 6을 0에다가 추가하기
1 -> 5을 1에다가 추가하기
0 -> 4을 0에다가 추가하기
2 -> 3을 2에다가 추가하기
3 -> 2을 3에다가 추가하기
2 -> 1을 2에다가 추가하기
package GreedyAlgorithm;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class _1138 {
static int height[] = new int[11];
static List<Integer> list;
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
list = new ArrayList<Integer>();
for (int i = 0; i < N; i++) {
height[i+1] = sc.nextInt();
}
for (int i = N ; i >= 1; i--) {
list.add(height[i],i);
}
for (int i = 0; i < list.size(); i++) {
System.out.print(list.get(i)+" ");
}
sc.close();
}
}
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) GreedyAlgorithm - (17) 저울 (0) | 2019.12.19 |
---|---|
(Baekjoon) GreedyAlgorithm - (16) 병든 나이트 (0) | 2019.12.16 |
(Baekjoon) GreedyAlgorithm - (14) 반도체 설계 (0) | 2019.12.13 |
(Baekjoon) dp - (7) 가장 긴 증가하는 부분 수열_O(NlogN) (0) | 2019.12.13 |
(Baekjoon) dp - (7) 가장 긴 증가하는 부분 수열_O(N^2) (0) | 2019.12.10 |
Comments