Codeforces Round #390 (Div. 2)DFedor and coupons (排序+优先队列)

来源:互联网 发布:燃料烃行情软件 编辑:程序博客网 时间:2024/06/16 06:05

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 n discount 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 k coupons 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 x is 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个区间就维护最值(维护过程中好像需要一个小小的证明)。
代码:

#include <bits/stdc++.h>#define bababaa printf("!!!!!!!\n")using namespace std;struct node{    int l,r,pos;    bool operator <(const node &t)const{        return l<t.l;}}a[300006];priority_queue<int,vector<int>,greater<int> >p;int L,R,ans;int n,k;int main(){    scanf("%d%d",&n,&k);    for(int i=1;i<=n;i++)    {        scanf("%d%d",&a[i].l,&a[i].r);        a[i].pos=i;    }    sort(a+1,a+1+n);    ans=0;    for(int i=1;i<=n;i++)    {        int len=0;        p.push(a[i].r);        if(p.size()>k)            p.pop();        if(p.size()==k) len=p.top()-a[i].l+1;        if(ans<len)        {            ans=len;            L=a[i].l;            R=p.top();        }    }    printf("%d\n",ans);    if(ans==0)    {        for(int i=1;i<=k;i++)            printf("%d ",i);        printf("\n");    }    else    {        for(int i=1;i<=n;i++)        {         if(k)         {             if(a[i].l<=L&&a[i].r>=R)             {                 printf("%d ",a[i].pos);                 k--;             }         }        }        printf("\n");    }}
0 0
原创粉丝点击