CF222D.Olympiad

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least xx points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the results have only points, no names. The teacher has to know Vasya's chances.

Help Vasya's teacher, find two numbers — the best and the worst place Vasya could have won. Note that the total results' table sorts the participants by the sum of points for both tours (the first place has the participant who has got the most points). If two or more participants have got the same number of points, it's up to the jury to assign places to them according to their choice. It is guaranteed that each participant of the Olympiad participated in both tours of the Olympiad.

输入格式

The first line contains two space-separated integers n,xn,x ( 1<=n<=105; 0<=x<=21051<=n<=10^{5}; 0<=x<=2·10^{5} ) — the number of Olympiad participants and the minimum number of points Vasya earned.

The second line contains nn space-separated integers: a1,a2,...,ana_{1},a_{2},...,a_{n} ( 0<=ai<=1050<=a_{i}<=10^{5} ) — the participants' points in the first tour.

The third line contains nn space-separated integers: b1,b2,...,bnb_{1},b_{2},...,b_{n} ( 0<=bi<=1050<=b_{i}<=10^{5} ) — the participants' points in the second tour.

The participants' points are given in the arbitrary order. It is guaranteed that Vasya was present in the Olympiad — there are two integers i,ji,j (1<=i,j<=n)(1<=i,j<=n) such, that ai+bj>=xa_{i}+b_{j}>=x .

输出格式

Print two space-separated integers — the best and the worst place Vasya could have got on the Olympiad.

输入输出样例

  • 输入#1

    5 2
    1 1 1 1 1
    1 1 1 1 1
    

    输出#1

    1 5
    
  • 输入#2

    6 7
    4 3 5 6 4 4
    8 6 0 4 3 4
    

    输出#2

    1 5
    

说明/提示

In the first text sample all 5 participants earn 2 points each in any case. Depending on the jury's decision, Vasya can get the first (the best) as well as the last (the worst) fifth place.

In the second test sample in the best case scenario Vasya wins again: he can win 12 points and become the absolute winner if the total results' table looks like that — {4:8, 6:4, 3:6, 4:4, 4:3, 5:0}.

In this table all participants are sorted by decreasing points and we can see how much a participant earned in the first and in the second tour.

In the worst case scenario Vasya can get the fifth place if the table looks like that — {4:8, 4:6, 6:4, 5:4, 4:3, 3:0}, and he earned 4 and 3 points in the first and second tours, correspondingly.

首页