-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
50 lines (39 loc) Β· 1.2 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
50
package DFS.P15658;
import java.util.Scanner;
public class Main {
static int N;
static int[] nums;
static int[] ops = new int[4];
static int max = Integer.MIN_VALUE, min = Integer.MAX_VALUE;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
nums = new int[N];
for (int i = 0; i < N; i++) nums[i] = sc.nextInt();
for (int i = 0; i < 4; i++) ops[i] = sc.nextInt();
dfs(0, nums[0]);
System.out.println(max);
System.out.println(min);
}
static void dfs(int count, int res) {
if (count == N - 1) {
max = Math.max(max, res);
min = Math.min(min, res);
return;
}
for (int i = 0; i < 4; i++) {
if (ops[i] > 0) {
ops[i] --;
dfs(count + 1, cal(i, res, nums[count + 1]));
ops[i] ++;
}
}
}
static int cal(int op, int target, int calnum) {
if (op == 0) target += calnum;
else if (op == 1) target -= calnum;
else if (op == 2) target *= calnum;
else target /= calnum;
return target;
}
}