The bone collector had a big bag with a volume of V ,and along his trip of collecting there are a lot of bones , obviously , different bone has different value and different volume, now given the each bone’s value along his trip , can you calculate out the maximum of the total value the bone collector can get ?
Input
The first line contain a integer T , the number of cases.
Followed by T cases , each case three lines , the first line contain two integer N , V, (N <= 1000 , V <= 1000 )representing the number of bones and the volume of his bag. And the second line contain N integers representing the value of each bone. The third line contain N integers representing the volume of each bone.
Output
One integer per line representing the maximum of the total value (this number will be less than 231).
Sample Input
1 5 10 1 2 3 4 5 5 4 3 2 1
Sample Output
14
二维数组:
//#define _CRT_SECURE_NO_WARNINGS//防止一些函数VS认定不安全而错误
#pragma warning(disable:4996)//屏蔽4996警告信息
#include
#include<conio.h>
#include<time.h>
#include
#include<stdio.h>
#include<string.h>
#include
#include
typedef long long ll;
typedef long l;
#define fo(i,begin,end) for(int i=begin;i<end;++i)
#define foo(i,begin,end) for(int i=begin;i>end;–i)
#define clr(a) memset(a,0,sizeof(a))
const int maxn = 1005;
using namespace std;
ll dp[maxn][maxn];
ll val[maxn],vol[maxn];
int main()
{
//freopen(“in.txt”, “r”, stdin);
ios::sync_with_stdio;
int t;
cin >> t;
while (t–)
{
clr(dp);
clr(val);
clr(vol);
int n, v;
cin >> n >> v;
fo(i, 1, n+1)
cin >> val[i];//价值
fo(i, 1, n+1)
cin >> vol[i];//体积
fo(i, 1, n+1)
{
fo(j, 0, v + 1)
{
if (j < vol[i])
dp[i][j] = dp[i - 1][j];
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip1024c (备注前端)
最后
为了帮助大家更好的了解前端,特别整理了《前端工程师面试手册》电子稿文件。
CodeChina开源项目:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
]( )**