CF878C.Tournament
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Recently a tournament in k kinds of sports has begun in Berland. Vasya wants to make money on the bets.
The scheme of the tournament is very mysterious and not fully disclosed. Competitions are held back to back, each of them involves two sportsmen who have not left the tournament yet. Each match can be held in any of the k kinds of sport. Loser leaves the tournament. The last remaining sportsman becomes the winner. Apart of this, the scheme can be arbitrary, it is not disclosed in advance.
Vasya knows powers of sportsmen in each kind of sport. He believes that the sportsmen with higher power always wins.
The tournament is held every year, and each year one new participant joins it. In the first tournament, only one sportsman has participated, in the second there were two sportsmen, and so on. Vasya has been watching the tournament for the last n years. Help him to find the number of possible winners for each of the n tournaments.
输入格式
The first line contains two integers n and k ( 1<=n<=5⋅104 , 1<=k<=10 ) — the number of tournaments and the number of kinds of sport, respectively.
Each of the next n lines contains k integers si1,si2,...,sik ( 1<=sij<=109 ), where sij is the power of the i -th sportsman in the j -th kind of sport. The sportsman with higher powers always wins. It's guaranteed that for any kind of sport all of these powers are distinct.
输出格式
For each of the n tournaments output the number of contenders who can win.
输入输出样例
输入#1
3 2 1 5 5 1 10 10
输出#1
1 2 1
输入#2
3 2 2 2 3 3 1 10
输出#2
1 1 3
输入#3
3 2 2 3 1 1 3 2
输出#3
1 1 2
说明/提示
In the first sample:
In the first tournament there is only one sportsman, and he is the winner.
In the second tournament, there are two sportsmen, and everyone can defeat another, depending on kind of sports.
In the third tournament, the third sportsman in the strongest in both kinds of sports, so he is the winner regardless of the scheme.