【LeetCode】983. 最低票价 Minimum Cost For Tickets(C++ & Python)
- 作者: 负雪明烛
- id: fuxuemingzhu
- 个人博客:http://fuxuemingzhu.cn/
题目地址:https://leetcode.com/problems/minimum-cost-for-tickets/
题目描述
In a country popular for train travel, you have planned some train travelling one year in advance. The days of the year that you will travel is given as an array days. Each day is an integer from 1 to 365.
Train tickets are sold in 3 different ways:
- a 1-day pass is sold for costs[0] dollars;
- a 7-day pass is sold for costs[1] dollars;
- a 30-day pass is sold for costs[2] dollars.
The passes allow that many days of consecutive travel. For example, if we get a 7-day pass on day 2, then we can travel for 7 days: day 2, 3, 4, 5, 6, 7, and 8.
Return the minimum number of dollars you need to travel every day in the given list of days.
Example 1:
Input: days = [1,4,6,7,8,20], costs = [2,7,15]
Output: 11
Explanation:
For example, here is one way to buy passes that lets you travel your travel plan:
On day 1, you bought a 1-day pass for costs[0] = $2, which covered day 1.
On day 3, you bought a 7-day pass for costs[1] = $7, which covered days 3, 4, ..., 9.
On day 20, you bought a 1-day pass for costs[0] = $2, which covered day 20.
In total you spent $11 and covered all the days of your travel.
Example 2:
Input: days = [1,2,3,4,5,6,7,8,9,10,30,31], costs = [2,7,15]
Output: 17
Explanation:
For example, here is one way to buy passes that lets you travel your travel plan:
On day 1, you bought a 30-day pass for costs[2] = $15 which covered days 1, 2, ..., 30.
On day 31, you bought a 1-day pass for costs[0] = $2 which covered day 31.
In total you spent $17 and covered all the days of your travel.
Note:
1 <= days.length <= 3651 <= days[i] <= 365- days is in strictly increasing order.
costs.length == 31 <= costs[i] <= 1000
题目大意
在一年内的某些天会有若干天进行旅行,火车票卖票有三种方式:1天票、7天票、30天票,这几种票的价格分别是costs的三个元素。现在要在这些天内进行旅行,问覆盖这些天最少需要多少钱。
解题方法
动态规划
我竟然没有看出这个题是几个动态规划的题目。
这个题目比较长,但是理解起来还是比较简单的:有三种方式进行选择,要在三种方式里面选择一种,问最少的价格。听起来可以使用搜索的方式进行,应该也是可以的。但是更好的方式就是动态规划。
使用一个 dp 数组,其中 dp[i] 代表着我们旅行到 i 天为止需要的最少旅行价格。那么,如果当前天不需要旅行(不在days中),当然这一天就不用额外买票,所以需要花费的价格等于昨天的价格;如果当前天需要旅行的话,那么需要求三种买票方式的最小价格:昨天的最少价格+一天的票 costs[0],7天前的最少价格+7天的票钱 costs[1] ,30天前的最少价格+30天的票钱 costs[2]。
总之,递推公式是:
- dp[i] = dp[i - 1] 当第i天不用旅行
- dp[i] = min(dp[i - 1] + costs[0], dp[i - 7] + costs[1], dp[i - 30] + costs[2]) 当第i天需要旅行
实际操作时需要注意向前查找的时候是否越界的问题。
下面的代码里或许不能理解的是为什么把要旅行的天 dp[day] 初始化成0。其实这里真不用考虑太多,这个值只是做了一个标记,代表这天的状态不是INT_MAX,我们在下面计算状态转移的时候会根据这天是不是INT_MAX进行状态转移,等于INT_MAX的代表这天不用旅行,不等INT_MAX的时候代表着需要旅行。所以把days都初始化成一个非INT_MAX的数字即可,我们求需要状态转移的dp[i],需要并且只需要计算三种买票状态的最小值。
C++代码如下:
class Solution {
public:
int mincostTickets(vector<int>& days, vector<int>& costs) {
// dp[i] means min cost for day i
vector<int> dp(366, INT_MAX);
for (int day : days)
dp[day] = 0;
dp[0] = 0;
for (int i = 1; i < 366; ++i) {
if (dp[i] == INT_MAX)
dp[i] = dp[i - 1];
else {
int cur = dp[i - 1] + costs[0];
cur = min(cur, costs[1] + dp[max(0, i - 7)]);
cur = min(cur, costs[2] + dp[max(0, i - 30)]);
dp[i] = cur;
}
}
return dp[days[days.size() - 1]];
}
};
Python代码如下:
class Solution(object):
def mincostTickets(self, days, costs):
"""
:type days: List[int]
:type costs: List[int]
:rtype: int
"""
dp = [float("inf")] * 366
for day in days:
dp[day] = 0
dp[0] = 0
for i in range(1, 366):
if dp[i] == float("inf"):
dp[i] = dp[i - 1]
else:
cur = dp[i - 1] + costs[0]
cur = min(dp[max(0, i - 7)] + costs[1], cur)
cur = min(dp[max(0, i - 30)] + costs[2], cur)
dp[i] = cur
return dp[days[-1]]
日期
2019 年 1 月 29 日 —— 小年好
2020 年 5 月 6 日 —— 今天的每日一题
【LeetCode】983. 最低票价 Minimum Cost For Tickets(C++ & Python)的更多相关文章
- [Swift]LeetCode983. 最低票价 | Minimum Cost For Tickets
In a country popular for train travel, you have planned some train travelling one year in advance. ...
- 力扣Leetcode 983. 最低票价
最低票价 在一个火车旅行很受欢迎的国度,你提前一年计划了一些火车旅行.在接下来的一年里,你要旅行的日子将以一个名为 days 的数组给出.每一项是一个从 1 到 365 的整数. 火车票有三种不同的销 ...
- Leetcode之动态规划(DP)专题-详解983. 最低票价(Minimum Cost For Tickets)
Leetcode之动态规划(DP)专题-983. 最低票价(Minimum Cost For Tickets) 在一个火车旅行很受欢迎的国度,你提前一年计划了一些火车旅行.在接下来的一年里,你要旅行的 ...
- LeetCode 983. Minimum Cost For Tickets
原题链接在这里:https://leetcode.com/problems/minimum-cost-for-tickets/ 题目: In a country popular for train t ...
- [Swift]LeetCode1000. 合并石头的最低成本 | Minimum Cost to Merge Stones
There are N piles of stones arranged in a row. The i-th pile has stones[i] stones. A move consists ...
- 【leetcode】983. Minimum Cost For Tickets
题目如下: In a country popular for train travel, you have planned some train travelling one year in adva ...
- LC 983. Minimum Cost For Tickets
In a country popular for train travel, you have planned some train travelling one year in advance. ...
- 983. Minimum Cost For Tickets
网址:https://leetcode.com/problems/minimum-cost-for-tickets/ 参考:https://leetcode.com/problems/minimum- ...
- [Swift]LeetCode857. 雇佣 K 名工人的最低成本 | Minimum Cost to Hire K Workers
There are N workers. The i-th worker has a quality[i] and a minimum wage expectation wage[i]. Now w ...
随机推荐
- python项目——新闻管理系统
DAO(Data Access Object) 数据访问对象是一个面向对象的数据库接口 控制台的输入输出都是再app.py里面完成的 mysql_db.py import mysql.connect ...
- illumina SNP 芯片转基因型矩阵
一.芯片数据 此次拿到的illumina芯片数据并不是原始的数据,已经经过GenomeStudio软件处理成了finalreport文件,格式如下: 之前没处理过芯片数据,对于这种编码模式(Forwa ...
- 记一次 .NET 某化妆品 webapi 卡死分析
一:背景 1. 讲故事 10月份星球里的一位老朋友找到我,说他们公司的程序在一个网红直播带货下给弄得无响应了,无响应期间有大量的 RabbitMQ 超时,寻求如何找到根源,聊天截图我就不发了. 既然无 ...
- applogs流量数据项目学习
一. 项目介绍 项目的功能主要是面向App开发商提供App使用情况的统计服务 主要是基于用户启动app的统计分析,app只要启动就会上报一条日志记录 (启动日志),当然也会有其他的日志比如说页面访问日 ...
- webpack打包报错 ERROR in ./js/ww.js from UglifyJs Unexpected token keyword «function», expected punc «,» [src/page/ww/view/xx/xx.vue:119,0][./js/ww.js:55218,17]
找了好多解决办法 你可以试着将babel-loader的exclude注释掉,然后看能否打包成功.如果可以,那就是这个问题.你只需要在vue.config.js中配置transpileDependen ...
- 源码分析-Producer
消息生产者的代码都在client模块中,相对于RocketMQ来讲,消息生产者就是客户端,也是消息的提供者. 方法和属性 主要方法介绍 //创建主题 void createTopic(final St ...
- Linux学习 - fdisk分区
一.fdisk命令分区过程 系统一旦重启,分区将消失 1 添加新硬盘 直接在虚拟机上添加 2 查看新硬盘 fdisk -l 3 分区 fdisk /dev/sdb fdisk进入/dev/sdb硬件设 ...
- Docker 安装 Oracle12c
为选定需要pull到系统中的数据库镜像 # docker pull sath89/oracle-12c --------sath89/oracle-12c为选定需要pull到系统中的数据库镜像 doc ...
- java代码从出生到执行的过程浅析
阅读<深入理解java虚拟机 第二版 JVM高级特性与最佳实践> - jdk版本为1.6 1.什么是编译型语言.解释型语言 解释型语言:源代码不是直接翻译成机器语言,而是先翻译成中间代码, ...
- 【MySQL】排名函数
https://www.cnblogs.com/shizhijie/p/9366247.html 排名函数 主要有rank和dense_rank两种 区别: rank在排名的时候,排名的键一样的时候是 ...