前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【CodeForces 589F】Gourmet and Banquet(二分+贪心或网络流)

【CodeForces 589F】Gourmet and Banquet(二分+贪心或网络流)

作者头像
饶文津
发布2020-06-02 10:52:55
2510
发布2020-06-02 10:52:55
举报
文章被收录于专栏:饶文津的专栏饶文津的专栏

F. Gourmet and Banquet

time limit per test

2 seconds

memory limit per test

512 megabytes

input

standard input

output

standard output

A gourmet came into the banquet hall, where the cooks suggested n dishes for guests. The gourmet knows the schedule: when each of the dishes will be served.

For i-th of the dishes he knows two integer moments in time ai and bi (in seconds from the beginning of the banquet) — when the cooks will bring the i-th dish into the hall and when they will carry it out (ai < bi). For example, if ai = 10 and bi = 11, then the i-th dish is available for eating during one second.

The dishes come in very large quantities, so it is guaranteed that as long as the dish is available for eating (i. e. while it is in the hall) it cannot run out.

The gourmet wants to try each of the n dishes and not to offend any of the cooks. Because of that the gourmet wants to eat each of the dishes for the same amount of time. During eating the gourmet can instantly switch between the dishes. Switching between dishes is allowed for him only at integer moments in time. The gourmet can eat no more than one dish simultaneously. It is allowed to return to a dish after eating any other dishes.

The gourmet wants to eat as long as possible on the banquet without violating any conditions described above. Can you help him and find out the maximum total time he can eat the dishes on the banquet?

Input

The first line of input contains an integer n (1 ≤ n ≤ 100) — the number of dishes on the banquet.

The following n lines contain information about availability of the dishes. The i-th line contains two integers ai and bi(0 ≤ ai < bi ≤ 10000) — the moments in time when the i-th dish becomes available for eating and when the i-th dish is taken away from the hall.

Output

Output should contain the only integer — the maximum total time the gourmet can eat the dishes on the banquet.

The gourmet can instantly switch between the dishes but only at integer moments in time. It is allowed to return to a dish after eating any other dishes. Also in every moment in time he can eat no more than one dish.

Examples

input

代码语言:javascript
复制
3
2 4
1 5
6 9

output

代码语言:javascript
复制
6

input

代码语言:javascript
复制
3
1 2
1 2
1 2

output

代码语言:javascript
复制
0

Note

In the first example the gourmet eats the second dish for one second (from the moment in time 1 to the moment in time 2), then he eats the first dish for two seconds (from 2 to 4), then he returns to the second dish for one second (from 4 to 5). After that he eats the third dish for two seconds (from 6 to 8).

In the second example the gourmet cannot eat each dish for at least one second because there are three dishes but they are available for only one second (from 1 to 2).

每秒可以吃一种菜,每个菜有个可吃的时间区间,要求每种菜吃一样长时间,最多吃多久。

先二分这个时间。

然后贪心:按结束时间排序,越早结束的越先吃,从可以吃的最早时间开始吃。影响最小。

或者网络流:源点到每个菜建边,权为菜的时间,每个菜到可以吃的每个时间点建边,权为1,每个时间点到汇点建边,权为1。如果最大流为当前二分值,则该时间不比答案小。

代码语言:javascript
复制
#include <cstdio>
#include <algorithm>
#include <cstring>
#define inf 0x3f3f3f3f
#define N 105
using namespace std;
struct dish{
int l,r;
}d[N];
int n,vis[10005];
int cmp(dish a,dish b){
    return a.r<b.r;
}
int solve(int len){
    memset(vis,0,sizeof vis);
    for(int i=1;i<=n;i++){
        int x=0;
        for(int j=d[i].l;j<d[i].r;j++){
            if(vis[j]==0){
                vis[j]=i;
                x++;
                if(x==len)break;
            }
        }
        if(x<len)return 0;
    }
    return 1;
}
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d%d",&d[i].l,&d[i].r);
    sort(d+1,d+1+n,cmp);
    int l=0,r=10001;
    while(l<r-1){
        int m=(l+r)>>1;
        if(solve(m))l=m;
        else r=m;
    }
    printf("%d",l*n);
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-08-28 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档