728x90
https://www.acmicpc.net/problem/2529
// 코드
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
import java.util.*;
import java.io.*;
public class Main {
static StringBuilder sb = new StringBuilder();
static int K;
static String[] opers;
static int[] maxResult, minResult;
static boolean[] maxVisited = new boolean[10], minVisited = new boolean[10];
static boolean maxFlag = false, minFlag = false;
// 조건을 만족하는 최대 정수를 구하는 메서드
static void getMax(int x) {
// 처음 구해진 답이 최대 -> 1번만
if(maxFlag) return;
// 기저조건
if( x >= K + 1) {
for(int n : maxResult) {
sb.append(n);
}
sb.append("\n");
maxFlag = true;
return;
}
// 로직 수행
for(int i = 9; i > -1; --i) {
if(maxVisited[i]) continue;
boolean flag = false;
maxResult[x] = i;
if(x <= 0) flag = true;
else {
if( opers[x - 1].equals(">") && maxResult[x - 1] > maxResult[x] ) flag = true;
else if(opers[x - 1].equals("<") && maxResult[x - 1] < maxResult[x]) flag = true;
}
if(flag) {
maxVisited[i] = true;
getMax(x + 1);
maxVisited[i] = false;
}
}
}
// 조건을 만족하는 최소 정수를 구하는 메서드
static void getMin(int x) {
// 처음 구해진 답이 최소 이므로 1번만 처리한다.
if(minFlag) return;
// 기저조건
if( x >= K + 1) {
for(int n : minResult) {
sb.append(n);
}
sb.append("\n");
minFlag = true;
return;
}
// 로직수행
for(int i = 0; i <= 9; ++i) {
if(minVisited[i]) continue;
boolean flag = false;
minResult[x] = i;
if(x <= 0) flag = true;
else {
if( opers[x - 1].equals(">") && minResult[x - 1] > minResult[x] ) flag = true;
else if(opers[x - 1].equals("<") && minResult[x - 1] < minResult[x]) flag = true;
}
if(flag) {
minVisited[i] = true;
getMin(x + 1);
minVisited[i] = false;
}
}
}
// main
public static void main(String[] args) throws Exception{
// Please Enter Your Code Here
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
K = Integer.parseInt(br.readLine());
opers = new String[K];
maxResult = new int[K + 1];
minResult = new int[K + 1];
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i=0; i<K; ++i) opers[i] = st.nextToken();
getMax(0);
getMin(0);
bw.write(sb.toString());
bw.flush();
bw.close();
br.close();
}
}
|
cs |
반응형