题目链接

bzoj3628: [JLOI2014]天天酷跑

题解

开始读错题目了,尴尬

由于题目说的跳跃次数和高度是在一开始设定的。

发现枚举一下记忆化搜索就可以过了

要注意,跳到最高点是可以不下坠继续连跳的

另外,上边界不能到达

代码

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. inline int read() {
  5. int x = 0,f = 1;
  6. char c = getchar();
  7. while(c < '0' || c > '9'){if(c == '-') f = -1; c = getchar(); }
  8. while(c <= '9' && c >= '0') x = x * 10 + c - '0',c = getchar();
  9. return x * f;
  10. }
  11. const int maxn = 100007;
  12. int n,m,c1,c2,h,freq;
  13. #define INF 100000007
  14. int a[23][maxn];
  15. int f[23][maxn][6];
  16. bool vis[23][maxn][6];
  17. int dfs(int x,int y,int jumpcnt) {
  18. if(y > n) return 0;
  19. if(a[x][y] == -1) return -INF;
  20. if(vis[x][y][jumpcnt]) return f[x][y][jumpcnt];
  21. if(x == 1)jumpcnt = 0;
  22. int tmp = -INF ;
  23. if(jumpcnt < freq) {
  24. int Sum = 0,tx = x,ty = y; bool can = true;
  25. for(int i = 1;i < h;i ++) {
  26. tx ++,ty ++;
  27. if(a[tx][ty] == -1) {can = false; break; } Sum += a[tx][ty];
  28. }
  29. if(can) tmp = std::max(tmp,Sum + dfs(tx + 1,ty + 1,jumpcnt + 1));
  30. }
  31. if(x == 1) tmp = std::max(tmp, dfs(x,y + 1,0)) ;
  32. if(x > 1) tmp = std::max(tmp, dfs(x - 1,y + 1,jumpcnt));
  33. f[x][y][jumpcnt] = tmp + a[x][y];
  34. vis[x][y][jumpcnt] = true;
  35. return f[x][y][jumpcnt];
  36. }
  37. int ans = -INF ,an1,an2;
  38. int main() {
  39. n = read(),m = read(), c1 = read(),c2 = read();
  40. for(int i = 1;i <= m;++ i) for(int j = 1;j <= n;++ j)
  41. a[i][j] = read();
  42. for(freq = 1;freq <= 5;++ freq)
  43. for(h = 1;h * freq < m;++ h) {
  44. memset(vis,0,sizeof vis);
  45. memset(f,0,sizeof f);
  46. int sum = dfs(1,0,m) - (h - 1) * c1 - (freq - 1) * c2;
  47. if(sum > ans) ans = sum , an1 = h, an2 = freq;
  48. }
  49. if(ans > 0) printf("%d %d %d\n",ans,an2,an1);
  50. else puts("mission failed");
  51. return 0 ;
  52. } #include<cstdio>
  53. #include<cstring>
  54. #include<algorithm>
  55. inline int read() {
  56. int x = 0,f = 1;
  57. char c = getchar();
  58. while(c < '0' || c > '9'){if(c == '-') f = -1; c = getchar(); }
  59. while(c <= '9' && c >= '0') x = x * 10 + c - '0',c = getchar();
  60. return x * f;
  61. }
  62. const int maxn = 100007;
  63. int n,m,c1,c2,h,freq;
  64. #define INF 100000007
  65. int a[23][maxn];
  66. int f[23][maxn][6];
  67. bool vis[23][maxn][6];
  68. int dfs(int x,int y,int jumpcnt) {
  69. if(y > n) return 0;
  70. if(a[x][y] == -1) return -INF;
  71. if(vis[x][y][jumpcnt]) return f[x][y][jumpcnt];
  72. if(x == 1)jumpcnt = 0;
  73. int tmp = -INF ;
  74. if(jumpcnt < freq) {
  75. int Sum = 0,tx = x,ty = y; bool can = true;
  76. for(int i = 1;i < h;i ++) {
  77. tx ++,ty ++;
  78. if(a[tx][ty] == -1) {can = false; break; } Sum += a[tx][ty];
  79. }
  80. if(can) tmp = std::max(tmp,Sum + dfs(tx + 1,ty + 1,jumpcnt + 1));
  81. }
  82. if(x == 1) tmp = std::max(tmp, dfs(x,y + 1,0)) ;
  83. if(x > 1) tmp = std::max(tmp, dfs(x - 1,y + 1,jumpcnt));
  84. f[x][y][jumpcnt] = tmp + a[x][y];
  85. vis[x][y][jumpcnt] = true;
  86. return f[x][y][jumpcnt];
  87. }
  88. int ans = -INF ,an1,an2;
  89. int main() {
  90. n = read(),m = read(), c1 = read(),c2 = read();
  91. for(int i = 1;i <= m;++ i) for(int j = 1;j <= n;++ j)
  92. a[i][j] = read();
  93. for(freq = 1;freq <= 5;++ freq)
  94. for(h = 1;h * freq < m;++ h) {
  95. memset(vis,0,sizeof vis);
  96. memset(f,0,sizeof f);
  97. int sum = dfs(1,0,m) - (h - 1) * c1 - (freq - 1) * c2;
  98. if(sum > ans) ans = sum , an1 = h, an2 = freq;
  99. }
  100. if(ans > 0) printf("%d %d %d\n",ans,an2,an1);
  101. else puts("mission failed");
  102. return 0 ;
  103. }

bzoj3628: [JLOI2014]天天酷跑的更多相关文章

  1. [JLOI2014]天天酷跑

    请允许我对记忆化搜索进行一个总结,我认为所有的搜索只要数据范围允许,都可以转化为记忆化搜索, 只是,用处的多与少的关系,其本身是求出设出状态之后,为求出当前状态进行递推(搜索),推到 已知状态,之后再 ...

  2. Android版xx助手之天天酷跑外挂具体分析

    Android版xx助手之天天酷跑外挂具体分析 图/文      莫灰灰 背景 近些年来,移动互联网的大肆崛起,潜移默化中影响着人们的生活和工作习惯.当腾讯的微信平台接入手机游戏之后,移动端的游戏也開 ...

  3. 程序游戏推荐(C语言贪吃蛇,python天天酷跑(需要安装pygame),js是狠人就坚持30s)

    下面是下载位置,我把他们上传到我的文件下了. C语言贪吃蛇:https://files.cnblogs.com/files/ITXiaoAng/%E8%B4%AA%E5%90%83%E8%9B%87. ...

  4. cocos2d 简单的日常高仿酷跑游戏

    1.第一个直接看看这个游戏看起来视频(GIF我们不能满足游戏展) 跑酷游戏最纠结的是地图.碰撞倒是简单,能够自己写或者使用box2d等物理引擎.跑酷游戏地图的特点就是随机性.可是随机中又有策划特意安排 ...

  5. [置顶] cocos2d-x 植物大战僵尸(13)类似酷跑的【同一角色不同动画间的切换的实现】

          有几天没和大家分享博客了,原因很简单,就是我在运行第12章所写的代码时:(开始一切正常,不过没多久就出现了内存泄露!.可能求成心切吧,当时没多加考虑就把代码发上去了.我在此对看过第12章得 ...

  6. bzoj AC倒序

    Search GO 说明:输入题号直接进入相应题目,如需搜索含数字的题目,请在关键词前加单引号 Problem ID Title Source AC Submit Y 1000 A+B Problem ...

  7. 站在风口,你或许就是那年薪20w+的程序猿

    最近面试了一些人,也在群上跟一些群友聊起,发现现在的互联网真是热,一些工作才两三年的期望的薪资都是十几K的起,这真是让我们这些早几年就成为程序猿的情何以堪!正所谓是站在风口上,猪也能飞起来!我在这里就 ...

  8. 相关query挖掘

    1.何为相关query 我通常也把相关query称为相似query,搜索日志中一个用户在短时间内的一系列搜索词被称为相关query.相关就是两个query间有一定的关系,反映了用户在当时的需求.本文就 ...

  9. iOS开发之如何跳到系统设置里的各种设置界面

    跳到更多设置界面 除了跳到WiFi设置界面,能不能跳到其他的设置界面呢?比如:定位服务.FaceTime.音乐等等.都是可以的,一起来看看如何实现的! 定位服务 定位服务有很多APP都有,如果用户关闭 ...

随机推荐

  1. python高级特性和高阶函数

    python高级特性 1.集合的推导式 列表推导式,使用一句表达式构造一个新列表,可包含过滤.转换等操作. 语法:[exp for item in collection if codition] if ...

  2. JDBC编程示例

    package com.lovo.test; import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLE ...

  3. Python字符串,整型,浮点数相互转化

    Python字符串,整型,浮点数相互转化 觉得有用的话,欢迎一起讨论相互学习~Follow Me int(str) 函数将符合整数的规范的字符串转换成int型 float(str) 函数将符合浮点数的 ...

  4. python学习笔记6--操作Mysql

    一.mysql操作 import pymysql #连上mysql ip 端口号 密码 账号 数据库 #建立游标 #执行sql #获取结果 #关闭连接.关闭游标 conn=pymysql.connec ...

  5. Java入门系列(七)Java 集合框架(JCF, Java Collections Framework)

    Java 集合概述 List.Set.Map可以看做集合的三大类 java集合就像一个容器,可以将多个对象的引用丢进该容器中. Collection和Map是java集合的根接口. List List ...

  6. MyCat分库分表入门

    1.分区 对业务透明,分区只不过把存放数据的文件分成了许多小块,例如mysql中的一张表对应三个文件.MYD,MYI,frm. 根据一定的规则把数据文件(MYD)和索引文件(MYI)进行了分割,分区后 ...

  7. 第11月第8天 ffmpeg ffplay

    static int ffplay_video_thread(void *arg) { FFPlayer *ffp = arg; VideoState *is = ffp->is; AVFram ...

  8. 第7月第12天 opengles background

    1. After your app exits its applicationDidEnterBackground: method, it must not make any new OpenGL E ...

  9. linux磁盘已满,文件占用情况

    du -sh /data0/* 如上,/data0/* 表示查看data0文件夹下各个目录的磁盘占用情况 df -h 查看总的磁盘占比

  10. 面试:----Struts和springmvc的区别--区别上

    SpringMVC和Struts2的区别 1核心控制器(前端控制器,预处理控制器):对于使用过MVC框架的人来说这个词应该不会陌生.核心控制器的主要用途处理所有的请求.然后对那些特殊的请求.统一的进行 ...