301357: CF254B. Jury Size

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Jury Size

题意翻译

有 $n$ 场比赛 每场比赛有四个数值:举办时的月,日,需要的人数与持续时间,求需要的最少人数; 注意:每个月份所有的天数按照2013年(平年)计算!(也就是说,二月只有28天)

题目描述

In 2013, the writers of Berland State University should prepare problems for $ n $ Olympiads. We will assume that the Olympiads are numbered with consecutive integers from 1 to $ n $ . For each Olympiad we know how many members of the jury must be involved in its preparation, as well as the time required to prepare the problems for her. Namely, the Olympiad number $ i $ should be prepared by $ p_{i} $ people for $ t_{i} $ days, the preparation for the Olympiad should be a continuous period of time and end exactly one day before the Olympiad. On the day of the Olympiad the juries who have prepared it, already do not work on it. For example, if the Olympiad is held on December 9th and the preparation takes 7 people and 6 days, all seven members of the jury will work on the problems of the Olympiad from December, 3rd to December, 8th (the jury members won't be working on the problems of this Olympiad on December 9th, that is, some of them can start preparing problems for some other Olympiad). And if the Olympiad is held on November 3rd and requires 5 days of training, the members of the jury will work from October 29th to November 2nd. In order not to overload the jury the following rule was introduced: one member of the jury can not work on the same day on the tasks for different Olympiads. Write a program that determines what the minimum number of people must be part of the jury so that all Olympiads could be prepared in time.

输入输出格式

输入格式


The first line contains integer $ n $ — the number of Olympiads in 2013 ( $ 1<=n<=100 $ ). Each of the following $ n $ lines contains four integers $ m_{i} $ , $ d_{i} $ , $ p_{i} $ and $ t_{i} $ — the month and day of the Olympiad (given without leading zeroes), the needed number of the jury members and the time needed to prepare the $ i $ -th Olympiad ( $ 1<=m_{i}<=12 $ , $ d_{i}>=1 $ , $ 1<=p_{i},t_{i}<=100 $ ), $ d_{i} $ doesn't exceed the number of days in month $ m_{i} $ . The Olympiads are given in the arbitrary order. Several Olympiads can take place in one day. Use the modern (Gregorian) calendar in the solution. Note that all dates are given in the year 2013. This is not a leap year, so February has 28 days. Please note, the preparation of some Olympiad can start in 2012 year.

输出格式


Print a single number — the minimum jury size.

输入输出样例

输入样例 #1

2
5 23 1 2
3 13 2 3

输出样例 #1

2

输入样例 #2

3
12 9 2 1
12 8 1 3
12 8 2 2

输出样例 #2

3

输入样例 #3

1
1 10 1 13

输出样例 #3

1

Input

题意翻译

有 $n$ 场比赛 每场比赛有四个数值:举办时的月,日,需要的人数与持续时间,求需要的最少人数; 注意:每个月份所有的天数按照2013年(平年)计算!(也就是说,二月只有28天)

加入题单

算法标签: