-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
29 lines (23 loc) Β· 822 Bytes
/
Main.java
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
package Implementation.P16719;
import java.io.*;
public class Main {
static char[] S;
static StringBuilder sb = new StringBuilder();
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Implementation/P16719/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
S = br.readLine().toCharArray();
solve(0, S.length-1, 0);
}
static void solve(int start, int end, int offset) {
if (start > end) return;
int idx = start;
for (int i = start; i <= end; i++) {
if (S[idx] > S[i]) idx = i;
}
sb.insert(offset, S[idx]);
System.out.println(sb.toString());
solve(idx+1, end, offset+1);
solve(start, idx-1, offset);
}
}