您的位置:首页 > Web前端

codeforces 754D. Fedor and coupons

2017-01-07 01:02 477 查看
D. Fedor and coupons

time limit per test
4 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

All our characters have hobbies. The same is true for Fedor. He enjoys shopping in the neighboring supermarket.

The goods in the supermarket have unique integer ids. Also, for every integer there is a product with id equal to this integer. Fedor has ndiscount coupons, the i-th of them can be used with products with ids ranging from li to ri, inclusive. Today Fedor wants to take exactly kcoupons with him.

Fedor wants to choose the k coupons in such a way that the number of such products x that all coupons can be used with this product xis as large as possible (for better understanding, see examples). Fedor wants to save his time as well, so he asks you to choose coupons for him. Help Fedor!

Input
The first line contains two integers n and k (1 ≤ k ≤ n ≤ 3·105) — the number of coupons Fedor has, and the number of coupons he wants to choose.

Each of the next n lines contains two integers li and ri ( - 109 ≤ li ≤ ri ≤ 109) — the description of the i-th coupon. The coupons can be equal.

Output
In the first line print single integer — the maximum number of products with which all the chosen coupons can be used. The products with which at least one coupon cannot be used shouldn't be counted.

In the second line print k distinct integers p1, p2, ..., pk (1 ≤ pi ≤ n) — the ids of the coupons which Fedor should choose.

If there are multiple answers, print any of them.

Examples

input
4 2
1 100
40 70
120 130
125 180


output
31
1 2


input
3 2
1 12
15 20
25 30


output
0
1 2


input
5 2
1 10
5 15
14 50
30 70
99 100


output
21
3 4


Note
In the first example if we take the first two coupons then all the products with ids in range [40, 70] can be bought with both coupons. There are 31 products in total.

In the second example, no product can be bought with two coupons, that is why the answer is 0. Fedor can choose any two coupons in this example.

题意:给出n个区间,要求选出k个区间,是k个区间的并尽可能大

话说无数神犇在我比赛的时候指点了我,但是MDZZ。。。我都没听懂啊,最后yy一个丑陋复杂度的做法。

考虑对于l为第一关键字排序,然后二分答案,可知l是单调递增的,用一个堆维护第k大的r是什么,然后判断区间大小就可以了。
 然而考完之后发现了,二分个毛线啊!

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<cstdlib>
#include<cmath>
#include<cstring>
#include<queue>
using namespace std;
#define maxn 500010
#define llg long long
#define yyj(a) freopen(a".in","r",stdin),freopen(a".out","w",stdout);
llg n,m,k,mid,anss[maxn],flag;

struct data
{
llg quan,wz;
bool operator < (const data &a )const
{
return a.quan<quan;
}
};

priority_queue<data>q;

struct node
{
llg l,r,wz;
}a[maxn];

bool cmp(const node&a,const node&b) {return a.l<b.l;}

bool check(llg x)
{
if (!flag)
{
while (!q.empty()) q.pop();
}
else
{
flag=0;
llg tail=0;
while (!q.empty()) {anss[++tail]=q.top().wz; q.pop();}
}
for (llg i=1;i<=n;i++)
{
data w;
w.quan=a[i].r; w.wz=a[i].wz;
q.push(w);
if (q.size()>k) q.pop();
if (q.size()==k)
{
if (q.top().quan-a[i].l+1>=x) return 1;
}
}
return 0;
}

int main()
{
yyj("D");
cin>>n>>k;
for (llg i=1;i<=n;i++){ scanf("%lld%lld",&a[i].l,&a[i].r); a[i].wz=i;}
sort(a+1,a+n+1,cmp);
llg l=0,r=(llg)20000000000;
llg ans=0;
while (l<=r)
{
mid=(l+r)/2;
if(check(mid)) {ans=mid; l=mid+1; flag=1;} else {r=mid-1;}
}
cout<<ans<<endl;
sort(anss+1,anss+k+1);
if (ans!=0)
{
for (llg i=1;i<=k;i++) printf("%lld ",anss[i]);
}
else
{
for (llg i=1;i<=k;i++) printf("%lld ",i);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: