【Codeforces Round #351 Div. 2】 673B Problems for Round

There are n problems prepared for the next Codeforces round. They are arranged in ascending order by their difficulty, and no two problems have the same difficulty. Moreover, there are m pairs of similar problems. Authors want to split problems between two division according to the following rules:
• Problemset of each division should be non-empty.
• Each problem should be used in exactly one division (yes, it is unusual requirement).
• Each problem used in division 1 should be harder than any problem used in division 2.
• If two problems are similar, they should be used in different divisions.
Your goal is count the number of ways to split problem between two divisions and satisfy all the rules. Two ways to split problems are considered to be different if there is at least one problem that belongs to division 1 in one of them and to division 2 in the other.
Note, that the relation of similarity is not transitive. That is, if problem i is similar to problem j and problem j is similar to problem k, it doesn’t follow that i is similar to k.


【题目分析】
把一列数划分成两个集合,只能从中间分开,要求左面的比右面的要小,显然,可以维护一个左面最大值和右面最小值,看看是否冲突就好了。


【代码】

#include <cstdio>
#include <string>
#include <cstring>
#include <iostream> 
using namespace std;
int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    int lmax=1,rmin=n;
    for (int i=1;i<=m;++i){
        int u,v;
        scanf("%d%d",&u,&v);
        lmax=max(min(u,v),lmax);
        rmin=min(max(u,v),rmin);
    }
    if (lmax>=rmin) {
        printf("0\n"); return 0;
    }
    else {
        printf("%d\n",rmin-lmax); return 0;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值