일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- HelloWorld
- opcode
- javap
- 회피
- 여행
- Navigation Component
- bytecode
- Interface
- jvm
- bytecode 분석
- 심리학
- Android
- 일상회피
- 치유
- Recylcer
- 보안취약점
- extends
- 여행계획
- 보안
- Transition
- IMPLEMENT
- ㅇ
- abstract
- 취약점
- throws
- 버킷리스트
- static
- Shared Elements
- 일상탈출
- 심리여행
Archives
- Today
- Total
패스트터틀
(Baekjoon) GreedyAlgorithm - (12) 부등호 본문
https://www.acmicpc.net/problem/2529
이 문제를 풀기위해 선행되어야 하는 문제 : 로또, nqueen, dfs-bfs
linked list, dfs, bfs, queue, stack 의 개념을 다시 한번 잡고왔다.
이 문제는 depth-First Search 를 이용하는 backtracking 문제를 사용하여서 풀었다.
백트래킹을 포함하여 개념과 코드를 이해하였다면 쉽게 풀수있다.(하지만 이해하는 과정이 나는 개인적으로 오래걸렸다)
0으로 시작하여서 dfs로 깊게 깊게 들어가며 만족하지 않는다면 dfs 수행을 포기하는식으로한다.
save[] 는 방문을 했는지 안했는 유무를 visited를 대신하기 위해 필요한것이고
list[] 는 모든 dfs탐색을 저장하였다.
아래와같은 dfs탐색후 list에 저장해서 나열해볼경우 오름차순으로 정리됨을 알게 되었으며
index : 0 , index : size of list - 1 : max 라는것을 알수있다.
count == k가 될경우 해당 노드는 통과된것이니 해당노드들의 줄기를 list에 추가하는식으로 진행하였다.
isPossible함수는 해당 노드가 정답에 반하는것인지 확인후 아니라면 제거해주는 역할을해준다.
package GreedyAlgorithm;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class _2529 {
static int k;
static String Inequality[];
static StringBuffer st = new StringBuffer();
static int save[] = new int[10];
static List<String> list = new ArrayList<String>();
public static void dfs(int start,int count,String dap){
if(count == k)
list.add(dap);
else{
for (int i = 0; i < 10; i++) {
if(isPossible(Inequality[count],start,i,count)){
// System.out.println(dap + Inequality[count] + i);
save[count+1] = i;
dfs(i,count+1,dap + i);
}
}
}
}
public static boolean isPossible(String c,int a,int b,int count){
for (int i = 0; i <= count; i++) {
if(save[i] == b)
return false;
} // 이미 한숫자라면
if(c.equals("<")){ // 비교하기
if( b < a)
return false;
}
else{
if( a < b)
return false;
}
return true;
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
k = Integer.parseInt(br.readLine());
Inequality = br.readLine().split(" ");
for (int i = 0; i < 10; i++) {
save[0] = i;
dfs(i,0,i+"");
}
System.out.println(list.get(list.size()-1) + "\n" + list.get(0));
}
}
백준문제풀이Github :
https://github.com/sdk0213/baekjoon-study
'Algorithm > baekjoon' 카테고리의 다른 글
(Baekjoon) dp - (1) 2×n 타일링 (0) | 2019.11.20 |
---|---|
(Baekjoon) GreedyAlgorithm - (13) 행렬 (0) | 2019.11.19 |
(Baekjoon) backtracking - (2) N-Queen (0) | 2019.11.16 |
(Baekjoon) backtracking - (1) 로또 (0) | 2019.11.15 |
(Baekjoon) dfs,bfs - (1) dfs,bfs (0) | 2019.11.13 |
Comments