博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4502(吉哥系列故事——临时工计划)
阅读量:5732 次
发布时间:2019-06-18

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

枚举的错误:

View Code
#include
#include
using namespace std;struct Node{ int s;//time start int e;// end int c;//money}N[1010];bool cmp(Node a,Node b){ if(a.s
b.c)return true; return false;}int main(){ int T,m,n; int max,mx; int js,k; scanf("%d",&T); while(T--) { scanf("%d %d",&m,&n); for(int i=0;i
max)max=mx; } printf("%d\n",max); } return 0;}

测试数据:

1

7 3

1 3 5

4 6 5

4 7 10

 正确做法DP:

#include
#include
#include
using namespace std;const int N=110;int dp[N];struct Node{ int s;//start int e;//end int c;//cost} node[1010];bool cmp(Node a,Node b){ if(a.e
i)break; dp[i]=max(dp[i],dp[node[j].s-1]+node[j].c); } //for(int j=;j;j++) printf("%d\n",dp[m]); } return 0;}

 

转载于:https://www.cnblogs.com/XDJjy/archive/2013/04/23/3037603.html

你可能感兴趣的文章
BZOJ 1923: [Sdoi2010]外星千足虫 [高斯消元XOR]
查看>>
C语言学习笔记
查看>>
PHP 命令行模式实战之cli+mysql 模拟队列批量发送邮件(在Linux环境下PHP 异步执行脚本发送事件通知消息实际案例)...
查看>>
PS 如何使用液化工具给人物减肥
查看>>
cvc-complex-type.2.4.c: The matching wildcard...
查看>>
android 读取json数据(遍历JSONObject和JSONArray)
查看>>
pyjamas build AJAX apps in Python (like Google did for Java)
查看>>
<JavaScript语言精粹>-读书笔记(一)
查看>>
NPM教程
查看>>
Java学习笔记(40)——Java集合12之fail-fast
查看>>
Centos 配置IP的方式
查看>>
Go 的吉祥物,萌不萌
查看>>
【iOS】AFN网络请求通过获取cookies保持会话
查看>>
Java 的swing.GroupLayout布局管理器的使用方法和实例
查看>>
Android中Activity和Fragment的生命周期的对比
查看>>
C++Primer_笔记_异常处理
查看>>
分区交换 alter table exchange partition 在线表 历史表交换
查看>>
思科三层交换 HSRP 热备 配置方法
查看>>
zabbix详解:(二)添加被监控机器
查看>>
设计模式单列
查看>>