题库练习 To Hack or not to Hack
← 上一题 下一题 →

A10463 | To Hack or not to Hack

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Consider a regular Codeforces round consisting of three problems that uses dynamic scoring.

You are given an almost final scoreboard. For each participant (including yourself), the time of the accepted submission for each of the problems is given. Also, for each solution you already know whether you are able to hack it or not. The only changes in the scoreboard that will happen before the end of the round are your challenges.

What is the best place you may take at the end?

More formally, $n$ people are participating (including yourself). For any problem, if it was solved by exactly $k$ people at the end of the round, the maximum score for this problem is defined as:

1. If $n<2k<=2n$ , then the maximum possible score is $500$ ;
2. If $n<4k<=2n$ , then the maximum possible score is $1000$ ;
3. If $n<8k<=2n$ , then the maximum possible score is $1500$ ;
4. If $n<16k<=2n$ , then the maximum possible score is $2000$ ;
5. If $n<32k<=2n$ , then the maximum possible score is $2500$ ;
6. If $32k<=n$ , then the maximum possible score is $3000$ .

Let the maximum possible score for some problem be equal to $s$ . Then a contestant who didn't manage to get it accepted (or his solution was hacked) earns $0$ points for this problem. If he got the the solution accepted $t$ minutes after the beginning of the round (and his solution wasn't hacked), he earns ![](/uploads/acgo/image/d1881a4e1d4bd341_0778b7386288.jpeg) points for this problem.

The overall score of a participant is equal to the sum of points he earns for each problem plus $100$ points for each successful hack (only you make hacks).

The resulting place you get is equal to one plus the number of participants who's overall score is strictly greater than yours.

输入格式

The first line of the input contains a single integer $n$ ( $1<=n<=5000$ ) — the number of participants. You are the participant number $1$ .

Each of the following $n$ lines contains three integers $a_{i}$ , $b_{i}$ and $c_{i}$ . Here $a_{i}=0$ means that the participant number $i$ didn't manage to accept first problem. If $1<=a_{i}<=120$ , then the participant number $i$ got the first problem accepted $a_{i}$ minutes after the start of the contest and you cannot hack this solution. Finally, $-120<=a_{i}<=-1$ means that the participant number $i$ got the first problem accepted $-a_{i}$ minutes after the start of the contest and you can hack this solution. Similarly, $b_{i}$ and $c_{i}$ provide the information regarding second and third problems in the same format.

It's guaranteed that integers $a_{1}$ , $b_{1}$ and $c_{1}$ are non-negative.

输出格式

Print the only integer — the best place you can take at the end of the round.

输入输出样例

输入 #1
4
120 120 1
61 61 120
-61 61 120
0 0 0
输出 #1
1
输入 #2
4
0 0 119
-3 -17 -42
0 7 0
51 0 0
输出 #2
2
C++ 编辑器
输入
输出