CF756B.Travel Card
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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:
- a ticket for one trip costs 20 byteland rubles,
- a ticket for 90 minutes costs 50 byteland rubles,
- 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.
输入格式
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 ti are different, given in ascending order, i. e. t_{i+1}>t_{i} holds for all 1<=i<n .
输出格式
Output n integers. For each trip, print the sum the passenger is charged after it.
输入输出样例
输入#1
3 10 20 30
输出#1
20 20 10
输入#2
10 13 45 46 60 103 115 126 150 256 516
输出#2
20 20 10 0 20 0 0 20 20 10
说明/提示
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.