题目地址: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. 1 <= days.length <= 365
  2. 1 <= days[i] <= 365
  3. days is in strictly increasing order.
  4. costs.length == 3
  5. 1 <= costs[i] <= 1000

题目大意

在一年内的某些天会有若干天进行旅行,火车票卖票有三种方式:1天票、7天票、30天票,这几种票的价格分别是costs的三个元素。现在要在这些天内进行旅行,问覆盖这些天最少需要多少钱。

解题方法

动态规划

我竟然没有看出这个题是几个动态规划的题目。

这个题目比较长,但是理解起来还是比较简单的:有三种方式进行选择,要在三种方式里面选择一种,问最少的价格。听起来可以使用搜索的方式进行,应该也是可以的。但是更好的方式就是动态规划。

使用一个 dp 数组,其中 dp[i] 代表着我们旅行到 i 天为止需要的最少旅行价格。那么,如果当前天不需要旅行(不在days中),当然这一天就不用额外买票,所以需要花费的价格等于昨天的价格;如果当前天需要旅行的话,那么需要求三种买票方式的最小价格:昨天的最少价格+一天的票 costs[0],7天前的最少价格+7天的票钱 costs[1] ,30天前的最少价格+30天的票钱 costs[2]。

总之,递推公式是:

  1. dp[i] = dp[i - 1] 当第i天不用旅行
  2. 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)的更多相关文章

  1. [Swift]LeetCode983. 最低票价 | Minimum Cost For Tickets

    In a country popular for train travel, you have planned some train travelling one year in advance.  ...

  2. 力扣Leetcode 983. 最低票价

    最低票价 在一个火车旅行很受欢迎的国度,你提前一年计划了一些火车旅行.在接下来的一年里,你要旅行的日子将以一个名为 days 的数组给出.每一项是一个从 1 到 365 的整数. 火车票有三种不同的销 ...

  3. Leetcode之动态规划(DP)专题-详解983. 最低票价(Minimum Cost For Tickets)

    Leetcode之动态规划(DP)专题-983. 最低票价(Minimum Cost For Tickets) 在一个火车旅行很受欢迎的国度,你提前一年计划了一些火车旅行.在接下来的一年里,你要旅行的 ...

  4. LeetCode 983. Minimum Cost For Tickets

    原题链接在这里:https://leetcode.com/problems/minimum-cost-for-tickets/ 题目: In a country popular for train t ...

  5. [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 ...

  6. 【leetcode】983. Minimum Cost For Tickets

    题目如下: In a country popular for train travel, you have planned some train travelling one year in adva ...

  7. LC 983. Minimum Cost For Tickets

    In a country popular for train travel, you have planned some train travelling one year in advance.  ...

  8. 983. Minimum Cost For Tickets

    网址:https://leetcode.com/problems/minimum-cost-for-tickets/ 参考:https://leetcode.com/problems/minimum- ...

  9. [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 ...

随机推荐

  1. Docker Alpine Dockerfile 安装nginx,最小镜像

    Docker Alpine Dockerfile 安装nginx,最小镜像 FROM alpine MAINTAINER will ## 将alpine-linux:apk的安装源改为国内镜像 RUN ...

  2. 蛋白质组DIA深度学习之谱图预测

    目录 1. 简介 2. 近几年发表的主要工具 1.DeepRT 2.Prosit 3. DIANN 4.DeepDIA 1. 简介 基于串联质谱的蛋白质组学大部分是依赖于数据库(database se ...

  3. 毕业设计之LVS+keealive 负载均衡高可用实现

    环境介绍 centos6.9最小化安装 主机名 IPADDR lvsA.load.quan.bbs 192.168.111.131 lvsB.load.quan.bbs 192.168.111.132 ...

  4. 第一个基础框架 — mybatis框架 — 更新完毕

    1.Mybatis是什么? 百度百科一手 提取一下重点: MyBatis 本是apache的一个开源项目iBatis.即:mybatis的原名为:ibatis 2010年迁移到google code, ...

  5. Kafka入门教程(一)

    转自:https://blog.csdn.net/yuan_xw/article/details/51210954 1 Kafka入门教程 1.1 消息队列(Message Queue) Messag ...

  6. 零基础学习java------day5------do....while循环、嵌套、方法(函数)

    1  do...while循环 格式 初始化语句; do { 循环体语句; 控制条件语句; }while(判断条件语句); 流程: 先执行初始化语句 再执行循环体语句 再执行条件控制语句 再做条件的判 ...

  7. NERD_commenter快捷键

    快捷键有点多,记不过来,做个备份 1. \cc 注释当前行和选中行 2. \cn 没有发现和\cc有区别 3. \c<空格> 如果被选区域有部分被注释,则对被选区域执行取消注释操作,其它情 ...

  8. Lottie 使用

    原文:https://mp.weixin.qq.com/s?__biz=MzIxNjc0ODExMA==&mid=2247485033&idx=1&sn=54dd477b4c4 ...

  9. tomcat结合nginx

    相信很多人都听过nginx,这个小巧的东西慢慢地在吞食apache和IIS的份额.那究竟它有什么作用呢?可能很多人未必了解. 说到反向代理,可能很多人都听说,但具体什么是反向代理,很多人估计就不清楚了 ...

  10. zabbix之二进制安装

    #:参考官方网站 https://www.zabbix.com/documentation/4.0/manual/installation/install_from_packages/debian_u ...