-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
40 lines (31 loc) Β· 1.09 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
package Combination.P2798;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int N, M, ans;
static int[] cards;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Combination/P2798/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
cards = new int[N];
st = new StringTokenizer(br.readLine());
for (int i = 0; i < N; i++) cards[i] = Integer.parseInt(st.nextToken());
comb(0, 0, 0);
System.out.println(ans);
}
static void comb(int start, int cnt, int sum) {
if (sum > M) return;
if (cnt == 3) {
ans = Math.max(ans, sum);
return;
}
for (int i = start; i < N; i++) {
comb(i+1, cnt+1, sum+cards[i]);
}
}
}