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

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

题目链接:

dp[i]表示前i天的最大收入。

View Code
1 #include
2 #include
3 #include
4 const int N=110; 5 using namespace std; 6 int dp[N];//dp[i]表示前i天的最大收入 7 8 struct Node{ 9 int start,end;10 int value;11 }node[N*10];12 13 int cmp(const Node &a,const Node &b){14 return a.end
i)break;31 dp[i]=max(dp[i],dp[node[j].start-1]+node[j].value);32 }33 }34 printf("%d\n",dp[m]);35 }36 return 0;37 }

 

转载地址:http://fbgpx.baihongyu.com/

你可能感兴趣的文章
双十一流量洪峰 支撑阿里核心业务的云数据库揭秘
查看>>
OSChina 周一乱弹 ——程序员跟产品经理撕逼必须掌握的套路
查看>>
Linux系统启动流程详解
查看>>
Magento(CE1.X)自带模块解析五
查看>>
Factory Method模式 (一)
查看>>
代码整洁之道-第9章-单元测试-读书笔记
查看>>
C++ ssd5 12 optional exercise2
查看>>
如何调用带返回值类型的函数
查看>>
Building QT projects from the command line
查看>>
JSP
查看>>
新工作
查看>>
linux网络编程涉及的函数
查看>>
数据表的相关操作
查看>>
SQL 存储过程返回值
查看>>
POJ 2594 Treasure Exploration(最小可相交路径覆盖)题解
查看>>
数据挖掘十大经典算法
查看>>
ArcGIS API for Silverlight 调用GP服务加载等值线图层
查看>>
CentOS系统rsync文件同步 安装配置
查看>>
LogStash配置、使用(三)
查看>>
SpringMVC 学习笔记(二) @RequestMapping、@PathVariable等注解
查看>>