-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
49 lines (41 loc) Β· 1.45 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package Stack.P2800;
import java.io.*;
import java.util.*;
public class Main {
static String S;
static List<int[]> pair;
static HashSet<String> set;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Stack/P2800/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
S = br.readLine();
pair = new ArrayList<>();
Stack<Integer> stack = new Stack<>();
for (int i = 0, len = S.length(); i < len; i++) {
char c = S.charAt(i);
if (c == '(') stack.push(i);
else if (c == ')') pair.add(new int[]{stack.pop(), i});
}
set = new HashSet<>();
select(pair.size());
List<String> result = new ArrayList<>(set);
result.sort(String::compareTo);
for (String r : result) System.out.println(r);
}
static void select(int n) {
for (int i = 1; i < 1<<n; i++) {
StringBuilder sb = new StringBuilder(S);
PriorityQueue<Integer> pq = new PriorityQueue<>();
for (int j = 0; j < n; j++) {
if ((i & (1<<j)) != 0) {
int[] p = pair.get(j);
pq.offer(p[0]);
pq.offer(p[1]);
}
}
int k = 0;
while (!pq.isEmpty()) sb.deleteCharAt(pq.poll()-(k++));
set.add(sb.toString());
}
}
}