码迷,mamicode.com
首页 > 其他好文 > 详细

P1047 题解

时间:2018-10-01 19:55:43      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:++   题目   scan   print   题解   ret   直接   pre   printf   

题目简单

直接题解

#include<cstdio>
int a[10000];
int main(){
    int i,le,m,l,r,to,j;
    scanf("%d%d",&le,&m);
    to=le+1;
    for(i=1;i<=m;i++){
        scanf("%d%d",&l,&r);
        for(j=l;j<=r;j++)//关键在这里
            a[j]=1;
    }
    for(i=0;i<=le;i++)
        if(a[i])to--;
    printf("%d",to);
    return 0;
}

  

P1047 题解

标签:++   题目   scan   print   题解   ret   直接   pre   printf   

原文地址:https://www.cnblogs.com/wangshengjun/p/luoguP1047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!