开心的金明 (C语言代码) 摘要:递归:#include <stdio.h> #include <stdlib.h> int n,m; typedef struct Node { int price; …… 题解列表 2019年01月08日 0 点赞 0 评论 797 浏览 评分:5.9
开心的金明 (C语言代码) 摘要:解题思路: 01背包 φ(>ω<*)—b注意事项: 数组初始值要置零,二维数组太耗内存!!|ू•ૅω•́)ᵎᵎᵎ参考代码: #include<stdio.h>#include<string.h>…… 题解列表 2019年01月02日 1 点赞 2 评论 853 浏览 评分:8.7
开心的金明 (C++代码) 摘要:#include<bits/stdc++.h> using namespace std; typedef long long ll; ll n,m; ll dp[100000],v[10000…… 题解列表 2018年11月13日 0 点赞 0 评论 345 浏览 评分:0.0
开心的金明 (C++代码) 摘要:解题思路:用dp重新写一下,不过不用dp也能过,可能是测试数据比较水注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> …… 题解列表 2018年11月02日 0 点赞 0 评论 370 浏览 评分:6.0
开心的金明 (C++代码) 摘要:解题思路:应该是用dp做的,然而并不会...强行DFS还是可以过的,可以承受20以内数据量的打击注意事项:哪个大佬来教我一下dp哈参考代码:#include <iostream> #define…… 题解列表 2018年10月13日 0 点赞 0 评论 422 浏览 评分:0.0
优质题解 开心的金明 (C++代码) 摘要:解题思路: 我们从最后一个物品开始考虑,有选和不选两种选项,当然需要满足条件:total >= value[num]即我们总的金钱需要能够买得起该物品,当我们选择买,状态就变成了:OPT…… 题解列表 2018年06月16日 3 点赞 1 评论 2111 浏览 评分:9.7
开心的金明 (C语言代码)------------------C语言——菜鸟级 摘要:解题思路: 经典 01背包问题 注意事项:参考代码:#include <stdio.h> #include <string.h> #define M 30010 #define Max(a,b)…… 题解列表 2018年06月01日 10 点赞 0 评论 2180 浏览 评分:9.1
开心的金明 (C语言代码) 摘要:解题思路:背包问题注意事项:参考代码:#include<stdio.h>int sum[25][30100]; int max(int a,int b){ if(a>b) { return a; }…… 题解列表 2018年04月11日 0 点赞 0 评论 621 浏览 评分:0.0
开心的金明 (C++代码) 摘要:解题思路:01背包注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int Vmax=300…… 题解列表 2018年03月24日 0 点赞 0 评论 676 浏览 评分:0.0
开心的金明 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 开心的金明 { static int m; static int max=0; st…… 题解列表 2018年03月13日 1 点赞 0 评论 582 浏览 评分:0.0