網易實習2019程式設計題 牛牛揹包
牛牛準備參加學校組織的春遊, 出發前牛牛準備往揹包裡裝入一些零食, 牛牛的揹包容量為w。
牛牛家裡一共有n袋零食, 第i袋零食體積為v[i]。
牛牛想知道在總體積不超過揹包容量的情況下,他一共有多少種零食放法(總體積為0也算一種放法)。
這個題筆試的時候沒有寫出來
import java.util.*;
public class Main{
public static int count = 1;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int nums = scanner.nextInt();
int w = scanner.nextInt();
if(nums == 0 || w == 0){
System.out.println(0);
return;
}
long[] shiwu = new long[nums];
long sum = 0;
for (int i = 0; i < nums; i++) {
shiwu[i] = scanner.nextInt();
sum += shiwu[i];
}
if(sum <= w){
System.out.println((int)Math.pow(2,nums));
return;
}
helpDfs(shiwu,w,0,0);
System.out.println(count);
}
public static void helpDfs(long[] shiwu,int total,long sum,int cur){
if(cur < shiwu.length){
if(sum > total) return;
if(sum + shiwu[cur] <= total){
count++;
helpDfs(shiwu,total,sum+shiwu[cur],cur+1);
}
helpDfs(shiwu,total,sum,cur+1);
}
}
}
相關文章
- 揹包問題(01揹包與完全揹包)
- 51nod 1597 有限揹包計數問題 (揹包 分塊)
- 揹包問題
- 01揹包和完全揹包問題解法模板
- 01揹包問題
- 01 揹包問題
- javascript演算法基礎之01揹包,完全揹包,多重揹包實現JavaScript演算法
- 01揹包、完全揹包、多重揹包詳解
- 揹包DP——完全揹包
- 揹包DP——混合揹包
- 揹包 學習筆記筆記
- 揹包九講問題
- 經典揹包問題
- 揹包題型總結
- 揹包問題大合集
- 部分揹包問題(挖
- 005多重揹包問題||
- 從【零錢兌換】問題看01揹包和完全揹包問題
- 揹包問題例題總結
- 【模板】01揹包、完全揹包
- 分組揹包、完全揹包
- 【leetcode】揹包問題彙總LeetCode
- 2. 01揹包問題
- 揹包問題解題方法總結
- JavaScript中揹包問題(面試題)JavaScript面試題
- 強化學習--策略迭代如何解決01揹包問題?內附程式碼強化學習
- 揹包
- 精研3道簡單的網易2018校招程式設計題程式設計
- 【程式設計測試題】阿里巴巴2019年提前批程式設計題程式設計阿里
- 01揹包、有依賴的揹包
- 設計師研發智慧揹包Keeback,可實時定位和播放音樂
- chapter12-2-揹包問題APT
- 關於各種揹包問題
- 【動態規劃】揹包問題動態規劃
- 01揹包問題的解決
- 二維費用揹包問題
- 深入剖析多重揹包問題(上篇)
- 深入剖析多重揹包問題(下篇)