题解 1924: 蓝桥杯算法提高VIP-01背包

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯算法提高VIP-01背包

摘要:解题思路:注意事项:参考代码:        Scanner sc = new Scanner(System.in);        int m=sc.nextInt();        int n=……

01背包(Java代码)

摘要:解题思路: 用动态规划算法参考代码:import java.util.Scanner; public class 背包02 { public static void main(Strin……

VIP-01背包(简洁)

摘要:#include<stdio.h>#include<string.h>int a[1000][10000];int main(){ int n, m; scanf("%d%d", &n, &m); i……

和采药一样

摘要:#include <stdio.h>int max(int a,int b){    if(a>b)    {        return a;    }else{        return b; ……