区间合并题解
2022/1/28 23:35:16
本文主要是介绍区间合并题解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
题目:OpenJudge - 7620:区间合并
代码:用scanf更快嘿嘿嘿
①用了struct结构体;
#include<iostream> #include<algorithm> using namespace std; struct bqj{ int a; int b; }p[50005]; bool cmp(bqj x,bqj y){ if(x.a==y.a) return x.b<y.b; return x.a<y.a; } int main() { int n,i,f=1; scanf("%d",&n); for(i=0;i<n;i++) scanf("%d%d",&p[i].a,&p[i].b); sort(p,p+n,cmp); int maxb=p[0].b;//找maxb是为了防止出现类似[1,3],[2,6],[3,4]的情况 for(i=0;i<n&&f;i++){ if(p[i].a>maxb) f=0; if(p[i].b>maxb) maxb=p[i].b; } if(f) printf("%d %d",p[0].a,maxb); else printf("no"); return 0; }
②直接用数组;
#include<iostream> #include<algorithm> using namespace std; int main() { int n,i; int a[50005],b[50000],f=1; scanf("%d",&n); for(i=0;i<n;i++) scanf("%d%d",&a[i],&b[i]); sort(a,a+n); sort(b,b+n); for(i=1;i<n&&f;i++) if(a[i]>b[i-1]) f=0; if(f) printf("%d %d",a[0],b[n-1]); else printf("no"); return 0; }
这篇关于区间合并题解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略