D. Travel Card

本文介绍了一种针对公交票务系统的费用优化算法,通过动态规划确定乘客在多次出行中如何选择不同类型的车票以达到最低消费的目标,并实时计算每次出行后的总费用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

D. Travel Card
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A new innovative ticketing systems for public transport is introduced in Bytesburg. Now there is a single travel card for all transport. To make a trip a passenger scan his card and then he is charged according to the fare.

The fare is constructed in the following manner. There are three types of tickets:

  1. a ticket for one trip costs 20 byteland rubles,
  2. a ticket for 90 minutes costs 50 byteland rubles,
  3. a ticket for one day (1440 minutes) costs 120 byteland rubles.

Note that a ticket for x minutes activated at time t can be used for trips started in time range from t to t + x - 1, inclusive. Assume that all trips take exactly one minute.

To simplify the choice for the passenger, the system automatically chooses the optimal tickets. After each trip starts, the system analyses all the previous trips and the current trip and chooses a set of tickets for these trips with a minimum total cost. Let the minimum total cost of tickets to cover all trips from the first to the current is a, and the total sum charged before is b. Then the system charges the passenger the sum a - b.

You have to write a program that, for given trips made by a passenger, calculates the sum the passenger is charged after each trip.

Input

The first line of input contains integer number n (1 ≤ n ≤ 105) — the number of trips made by passenger.

Each of the following n lines contains the time of trip ti (0 ≤ ti ≤ 109), measured in minutes from the time of starting the system. All tiare different, given in ascending order, i. e. ti + 1 > ti holds for all 1 ≤ i < n.

Output

Output n integers. For each trip, print the sum the passenger is charged after it.

Examples
input
3
10
20
30
output
20
20
10
input
10
13
45
46
60
103
115
126
150
256
516
output
20
20
10
0
20
0
0
20
20
10
Note

In the first example, the system works as follows: for the first and second trips it is cheaper to pay for two one-trip tickets, so each time 20 rubles is charged, after the third trip the system understands that it would be cheaper to buy a ticket for 90 minutes. This ticket costs 50 rubles, and the passenger had already paid 40 rubles, so it is necessary to charge 10 rubles only.


题意:乘坐电车,一共会有n次乘坐,之后n行会一次给出每次乘坐的时间。问你最少花的钱是多少。每次输出应该支付的钱。

用dp[n]表示第n次旅行一共所要花费的最小钱数。那么对于dp[n]

1.就是花20快钱买咯。

2.和上面的一起能凑个90分钟就凑个90分钟。

3.和上面的一起能凑个一天就凑个1天。

那么当前的值就是这3个值的最小值。

然后看看代码就懂了。

#include <bits/stdc++.h>
using namespace std;
const int MAXN=1e5+7;
int n;
int dp[MAXN];
long long tt[MAXN];
int main()
{
    int i,j;
    scanf("%d",&n);
    for(i=1;i<=n;++i)
    {
        scanf("%I64d",&tt[i]);
    }
   int sum=0;
    for(i=1;i<=n;++i)
    {
        dp[i]=dp[i-1]+20;
        for(j=i-1;j>=1;--j)
        {
            if(tt[i]-tt[j]<90)dp[i]=min(dp[i],dp[j-1]+50);
            else
            if(tt[i]-tt[j]<1440)dp[i]=min(dp[i],dp[j-1]+120);
            else break;
        }
        printf("%d\n",dp[i]-sum);
        sum=dp[i];
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值