-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
36 lines (27 loc) Β· 957 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
30
31
32
33
34
35
36
package BruteForce.P16637;
import java.io.*;
public class Main {
static int N, ans = Integer.MIN_VALUE;
static char[] s;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BruteForce/P16637/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
s = br.readLine().toCharArray();
search(1, s[0]-'0');
System.out.println(ans);
}
static void search(int i, int res) {
if (i == N) {
ans = Math.max(ans, res);
return;
}
search(i+2, calc(res, s[i], s[i+1]-'0'));
if (i+2 < N) search(i+4, calc(res, s[i], calc(s[i+1]-'0', s[i+2], s[i+3]-'0')));
}
static int calc(int res, char op, int n) {
if (op == '+') return res + n;
else if (op == '-') return res - n;
else return res * n;
}
}