代码拉取完成,页面将自动刷新
package Acwing165小猫爬山;
import java.io.*;
import java.util.Arrays;
public class KittenClimbing {
static StreamTokenizer in = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));
static PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
static int nextInt() throws Exception{
in.nextToken();
return (int)in.nval;
}
static String next()throws Exception{
in.nextToken();
return in.sval;
}
static final int N = 20;
static int[] a = new int[N], sum = new int[N];
static int n, res = 18, w;
static void dfs(int u, int cnt) {
if (cnt >= res) {
return;
}
if (u >= n) {
res = cnt;
return;
}
for (int i = cnt - 1; i >= 0; i--) {
if (sum[i] + a[u] <= w) {
sum[i] += a[u];
dfs(u + 1, cnt);
sum[i] -= a[u];
}
}
sum[cnt] = a[u];
dfs(u + 1, cnt + 1);
sum[cnt] = 0;
}
public static void main(String[] args)throws Exception {
n = nextInt();
w = nextInt();
for (int i = 0; i < n; i++) {
a[i] = nextInt();
}
Arrays.sort(a, 0, n);
dfs(0, 0);
out.println(res);
out.flush();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。