983. Minimum Cost For Tickets Medium
1/**
2 * [983] Minimum Cost For Tickets
3 *
4 * You have planned some train traveling one year in advance. The days of the year in which you will travel are given as an integer array days. Each day is an integer from 1 to 365.
5 * Train tickets are sold in three different ways:
6 *
7 * a 1-day pass is sold for costs[0] dollars,
8 * a 7-day pass is sold for costs[1] dollars, and
9 * a 30-day pass is sold for costs[2] dollars.
10 *
11 * The passes allow that many days of consecutive travel.
12 *
13 * For example, if we get a 7-day pass on day 2, then we can travel for 7 days: 2, 3, 4, 5, 6, 7, and 8.
14 *
15 * Return the minimum number of dollars you need to travel every day in the given list of days.
16 *
17 * Example 1:
18 *
19 * Input: days = [1,4,6,7,8,20], costs = [2,7,15]
20 * Output: 11
21 * Explanation: For example, here is one way to buy passes that lets you travel your travel plan:
22 * On day 1, you bought a 1-day pass for costs[0] = $2, which covered day 1.
23 * On day 3, you bought a 7-day pass for costs[1] = $7, which covered days 3, 4, ..., 9.
24 * On day 20, you bought a 1-day pass for costs[0] = $2, which covered day 20.
25 * In total, you spent $11 and covered all the days of your travel.
26 *
27 * Example 2:
28 *
29 * Input: days = [1,2,3,4,5,6,7,8,9,10,30,31], costs = [2,7,15]
30 * Output: 17
31 * Explanation: For example, here is one way to buy passes that lets you travel your travel plan:
32 * On day 1, you bought a 30-day pass for costs[2] = $15 which covered days 1, 2, ..., 30.
33 * On day 31, you bought a 1-day pass for costs[0] = $2 which covered day 31.
34 * In total, you spent $17 and covered all the days of your travel.
35 *
36 *
37 * Constraints:
38 *
39 * 1 <= days.length <= 365
40 * 1 <= days[i] <= 365
41 * days is in strictly increasing order.
42 * costs.length == 3
43 * 1 <= costs[i] <= 1000
44 *
45 */
46pub struct Solution {}
47
48// problem: https://leetcode.com/problems/minimum-cost-for-tickets/
49// discuss: https://leetcode.com/problems/minimum-cost-for-tickets/discuss/?currentPage=1&orderBy=most_votes&query=
50
51// submission codes start here
52
53impl Solution {
54 pub fn mincost_tickets(days: Vec<i32>, costs: Vec<i32>) -> i32 {
55 0
56 }
57}
58
59// submission codes end
60
61#[cfg(test)]
62mod tests {
63 use super::*;
64
65 #[test]
66 fn test_983() {
67 }
68}
69
Back
© 2025 bowen.ge All Rights Reserved.