-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths0983_minimum_cost_for_tickets.go
More file actions
43 lines (35 loc) · 1.11 KB
/
s0983_minimum_cost_for_tickets.go
File metadata and controls
43 lines (35 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
https://leetcode.com/problems/minimum-cost-for-tickets/
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.
Train tickets are sold in three different ways:
a 1-day pass is sold for costs[0] dollars,
a 7-day pass is sold for costs[1] dollars, and
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:
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.
*/
package solutions
func mincostTickets(days, costs []int) int {
n := days[len(days)-1]
dp := make([]int, n+1)
M := make(map[int]bool)
for _, v := range days {
M[v] = true
}
for i := 1; i < len(dp); i++ {
if !M[i] {
dp[i] = dp[i-1]
continue
}
one := dp[i-1] + costs[0]
seven := dp[Maximum(i-7, 0)] + costs[1]
thirty := dp[Maximum(i-30, 0)] + costs[2]
dp[i] = Minimum(one, seven, thirty)
}
return dp[n]
}