1. //因为同一点结束的时间段会有多个,这里没考虑;
  2. //无限wa;
  3. const int N=1e6+7;
  4. int b[N];
  5. LL a[N];
  6. LL dp[N];
  7. struct asd{
  8. int s;
  9. int t;
  10. LL w;
  11. };
  12. asd q[N];
  13. bool cmp(asd z,asd x)
  14. {
  15. if(z.t<x.t)
  16. return 1;
  17. return 0;
  18. }
  19. int main()
  20. {
  21. int n,m,r;
  22. while(~scanf("%d%d%d",&n,&m,&r))
  23. {
  24. int s,t;
  25. LL w;
  26. for(int i=0;i<m;i++){
  27. scanf("%d%d%lld",&s,&t,&w);
  28. q[i].s=s;
  29. q[i].t=t;
  30. q[i].w=w;
  31. }
  32. sort(q,q+m,cmp);
  33. memset(a,0,sizeof(a));
  34. for(int i=0;i<m;i++){
  35. a[q[i].t]=q[i].w;
  36. b[q[i].t]=q[i].s;
  37. }
  38. memset(dp,0,sizeof(dp));
  39. int x;
  40. for(int i=1;i<=n;i++)
  41. {
  42. x=b[i]-r;
  43. if(x>=0){
  44. dp[i]=max(dp[i-1],dp[x]+a[i]);
  45. }
  46. else{
  47. dp[i]=max(a[i],dp[i-1]);
  48. }
  49. }
  50. /* for(int i=1;i<=n;i++)
  51. printf("%lld ",dp[i]);
  52. puts("");*/
  53. printf("%lld\n",dp[n]);
  54. }
  55. return 0;
  56. }
  57. /*
  58. 12 4 2
  59. 1 2 8
  60. 10 12 19
  61. 3 5 24
  62. 7 10 31
  63. 12 4 2
  64. 1 2 8
  65. 10 12 19
  66. 3 6 24
  67. 7 10 31
  68. */

后面想的是那我for一下前面的,然后找到有那个截止点的数据,然后找一个最优的。后来没有搞成n+m,就理应吃T了一发。

已AC;

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<math.h>
  4. #include<queue>
  5. #include<map>
  6. #include<stdlib.h>
  7. #include<string>
  8. #include<string.h>
  9. #include<algorithm>
  10. using namespace std;
  11. typedef long long LL;
  12. #define INF 0x3f3f3f3f
  13. #define PI acos(-1.0)
  14. //因为同一点结束的时间段会有多个,这里没考虑;
  15. //无限wa;
  16. const int N=1e6+7;
  17. int b[N];
  18. LL a[N];
  19. LL dp[N];
  20. struct asd{
  21. int s;
  22. int t;
  23. LL w;
  24. };
  25. asd q[N];
  26. bool cmp(asd z,asd x)
  27. {
  28. if(z.t<x.t)
  29. return 1;
  30. return 0;
  31. }
  32. int main()
  33. {
  34. int n,m,r;
  35. while(~scanf("%d%d%d",&n,&m,&r))
  36. {
  37. int s,t;
  38. LL w;
  39. for(int i=0;i<m;i++){
  40. scanf("%d%d%lld",&s,&t,&w);
  41. q[i].s=s;
  42. q[i].t=t;
  43. q[i].w=w;
  44. }
  45. memset(dp,0,sizeof(dp));
  46. for(int i=0;i<m;i++){
  47. dp[q[i].t]=max(q[i].w,dp[q[i].t]);
  48. }
  49. sort(q,q+m,cmp);
  50. int x;
  51. int i,j=0;
  52. for(i=1;i<=n;i++){
  53. dp[i]=max(dp[i],dp[i-1]);
  54. for(;j<m;){
  55. if(q[j].t==i){
  56. x=q[j].s-r;
  57. if(x<0) x=0;
  58. dp[i]=max(dp[i],dp[x]+q[j].w);
  59. j++;
  60. }
  61. else
  62. break;
  63. }
  64. }
  65. /* for(int i=1;i<=n;i++){
  66. printf("%d ",dp[i]);
  67. }
  68. puts("");*/
  69. printf("%d\n",dp[n]);
  70. }
  71. return 0;
  72. }
  73. /*
  74. 12 4 2
  75. 1 2 8
  76. 10 12 19
  77. 3 5 24
  78. 7 10 31
  79. 12 4 2
  80. 1 2 8
  81. 10 12 19
  82. 3 6 24
  83. 7 10 31
  84. */

POJ3616【基础DP】的更多相关文章

  1. 「kuangbin带你飞」专题十二 基础DP

    layout: post title: 「kuangbin带你飞」专题十二 基础DP author: "luowentaoaa" catalog: true tags: mathj ...

  2. 基础dp

    队友的建议,让我去学一学kuangbin的基础dp,在这里小小的整理总结一下吧. 首先我感觉自己还远远不够称为一个dp选手,一是这些题目还远不够,二是定义状态的经验不足.不过这些题目让我在一定程度上加 ...

  3. 基础DP(初级版)

    本文主要内容为基础DP,内容来源为<算法导论>,总结不易,转载请注明出处. 后续会更新出kuanbin关于基础DP的题目...... 动态规划: 动态规划用于子问题重叠的情况,即不同的子问 ...

  4. hdu 5586 Sum 基础dp

    Sum Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Problem Desc ...

  5. hdu 4055 Number String (基础dp)

    Number String Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  6. 训练指南 UVA - 10917(最短路Dijkstra + 基础DP)

    layout: post title: 训练指南 UVA - 10917(最短路Dijkstra + 基础DP) author: "luowentaoaa" catalog: tr ...

  7. 训练指南 UVA - 11324(双连通分量 + 缩点+ 基础DP)

    layout: post title: 训练指南 UVA - 11324(双连通分量 + 缩点+ 基础DP) author: "luowentaoaa" catalog: true ...

  8. M - 基础DP

    M - 基础DP Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Descriptio ...

  9. lightoj1004【基础DP】

    从低端到顶端求个最大值: 思路: 基础DP,递推 #include<cstdio> #include<queue> #include<map> #include&l ...

随机推荐

  1. 忘掉VNC/RDP,拿起手中的MobaXterm轻松上手远程桌面

    前言 原创文章,转载引用务必注明链接. 这期属于番外篇,随便写写.吐槽一下自己,关于"减少eMMC擦写,延长NAND寿命提升性能"的坑还没填完,都不好愉快地写点轻松的小项目灌水了. ...

  2. sql之浅谈视图的作用

    [数据库]☆★sql之浅谈视图的作用 在一个项目的实际开发过程中牵涉到复杂业务的时候,我们不可避免的须要使用中间表来进行数据连接,有的同学就说了,我能够採用Hibernate进行主外键进行关联啊?多对 ...

  3. c/c++中static和extern使用

    c/c++中static和extern使用 在C/C++中static和extern都能够用来修饰函数和变量,可是是有差别的. 内部函数和内部变量:仅仅能在文件内使用的函数和变量. 外部函数和外部变量 ...

  4. LeetCode_3Sum

    一.题目 3Sum Total Accepted: 45112 Total Submissions: 267165My Submissions Given an array S of n intege ...

  5. [LeedCode OJ]#28 Implement strStr()

    [ 声明:版权全部,转载请标明出处,请勿用于商业用途.  联系信箱:libin493073668@sina.com] 题目链接:https://leetcode.com/problems/implem ...

  6. 【前端】怎样成长为一名优秀的前端project师---

    浅谈本人的经验.也算是与大家交流吧,本人眼下也是从事前端的工作,时间并不长,说的不好,请见谅. 首先,前端project师必须得掌握HTML.CSS和JavaScript. 仅仅懂当中一个或两个还不行 ...

  7. Storm项目:流数据监控1《设计文档…

    博客公告: (1)本博客全部博客文章搬迁至<博客虫>http://blogchong.com/ (2)文章相应的源代码下载链接參考博客虫站点首页的"代码GIT". (3 ...

  8. 获取IOS应用安装列表

    原文转载至 http://blog.csdn.net/justinjing0612/article/details/8887747 转自鸟哥博客:http://blog.cnrainbird.com/ ...

  9. MD5的学习与练习

    MD5加密的Java实现 在各种应用系统中,如果需要设置账户,那么就会涉及到存储用户账户信息的问题,为了保证所存储账户信息的安全,通常会采用MD5加密的方式来,进行存储.首先,简单得介绍一下,什么是M ...

  10. ElasticSearch远程随意代码运行漏洞(CVE-2014-3120)分析

    原理 这个漏洞实际上非常easy,ElasticSearch有脚本运行(scripting)的功能,能够非常方便地对查询出来的数据再加工处理. ElasticSearch用的脚本引擎是MVEL,这个引 ...