博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 3624
阅读量:6611 次
发布时间:2019-06-24

本文共 675 字,大约阅读时间需要 2 分钟。

////  main.cpp//  poj3624Cpp////  Created by 韩雪滢 on 12/11/16.//  Copyright © 2016 韩雪滢. All rights reserved.//#include 
#include
using namespace std;int main() { int N,M; cin >> N >> M; int *des = new int[M+1]; for(int i=0;i<=M;i++) des[i] = 0; for(int j=0;j
> w >> d; for(int k=M;k>0;k--) { if(k-w >= 0){ des[k] = max(des[k],des[k-w]+d); } } } int result = 0; for(int n=1;n<=M;n++){ if(des[n] > result) result = des[n]; } cout << result << endl; return 0;}

 

转载于:https://www.cnblogs.com/HackHer/p/6159861.html

你可能感兴趣的文章
UI概念体系要素
查看>>
SSISDB5:使用TSQL脚本执行Package
查看>>
performSelectorInBackground V.S detachNewThreadSelector?
查看>>
linux,Centos,bash: service: command not found
查看>>
【转】UIColor对颜色的自定义
查看>>
php编译报错 configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-...
查看>>
asp.net后台进程做定时任务
查看>>
Ural_1671. Anansi's Cobweb(并查集)
查看>>
给vs2012换肤
查看>>
java接口中多继承的问题
查看>>
索引笔记《二》确定需要建立索引的列
查看>>
libjpeg的问题
查看>>
MySQL数据库学习笔记(八)----JDBC入门及简单增删改数据库的操作
查看>>
Java Web之Filter
查看>>
HTTP状态码详解
查看>>
Java_动态加载
查看>>
atitti.atiNav 手机导航组件的设计
查看>>
Ubuntu+Apache+PHP+Mysql环境搭建(完整版)
查看>>
Atitit.计算机图形图像图片处理原理与概论attilax总结
查看>>
于ssh端口转发的深入实例[转 - 当当 - 51CTO技术博客
查看>>