Salary Changing

Salary ChangingYou are the head of a large enterprise. n people work at you, and n is odd (i. e. n is not divisible by 2).You have to distribute salaries to your employees. Initially, you have ss do...
摘要由CSDN通过智能技术生成

Salary Changing

You are the head of a large enterprise. n people work at you, and n is odd (i. e. n is not divisible by 2).

You have to distribute salaries to your employees. Initially, you have ss dollars for it, and the i-th employee should get a salary from li to ri dollars. You have to distribute salaries in such a way that the median salary is maximum possible.

To find the median of a sequence of odd length, you have to sort it and take the element in the middle position after sorting. For example:

  • the median of the sequence [5,1,10,17,6] is 6,
  • the median of the sequence [1,2,1] is 1.

It is guaranteed that you have enough money to pay the minimum salary, i.e l1+l2+⋯+ln≤s.

Note that you don’t have to spend all your ss dollars on salaries.

You have to answer t test cases.

Input
The first line contains one integer t (1≤t≤2⋅10^5) — the number of test cases.

The first line of each query contains two integers n and s (1≤n<2⋅10^5, 1≤s≤2⋅10^14) — the number of employees and the amount of money you have. The value n is not divisible by 2.

The following n lines of each query contain the information about employees. The i-th line contains two integers li and ri (1≤li≤ri≤10^9).

It is guaranteed that the sum of all n over all queries does not exceed 2⋅10^5.

It is also guaranteed that you have enough money to pay the minimum salary to each employee, i. e. ∑i=1-n li≤s.

Output
For each test case print one integer — the maximum median salary that you can obtain.

Example
input
3
3 26
10 12
1 4
10 11
1 1337
1 1000000000
5 26
4 4
2 4
6 8
5 6
2 7
output
11
1337
6

Note
In the first test case, you can distribute salaries as follows: sal1=12,sal2=2,sal3=11 (sali is the salary of the i-th employee). Then the median salary is 11.

In the second test case, you have to pay 1337 dollars to the only employee.

In the third test case, you can distribute salaries as follows: sal1=4,sal2=3,sal3=6,sal4=6,sal5=7. Then the median salary is 6.

思路

题意就是给出n个区间,从每个区间选出一个数,要求n个数字之和不大于s,求这n个数字的最大中位数为多少?就很明显二分来做(不然暴力嘛),二分枚举数字,判断是否符合要求:<

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值