当前位置:网站首页>Interval problem acwing 906 Interval grouping
Interval problem acwing 906 Interval grouping
2022-07-05 06:24:00 【T_ Y_ F666】
Interval problem AcWing 906. Interval grouping
Original link
Algorithm tags
greedy
Ideas
ans Minimum number of groups , The correct answer
cnt The legal scheme is obtained according to the following algorithm
so ans<=cnt
prove ans>=cnt
therefore ans==cnt
Code
#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
using namespace std;
const int N = 100005;
inline int read(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
struct Sec{
int l, r;
}sec[N];
int mxr[N];
bool cmp(Sec A, Sec B){
return A.l<B.l;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n=read();
rep(i, 0, n){
sec[i].l=read(), sec[i].r=read();
}
sort(sec, sec+n,cmp);
// The small root heap maintains the maximum value of the right endpoint of all intervals int Interval subscript vector<int> The right end of the interval
priority_queue<int, vector<int>, greater<int>> heap;
rep(i, 0, n){
// Need to open up new areas
if(heap.empty()||heap.top()>=sec[i].l){
heap.push(sec[i].r);
}else{ // Update the maximum value of the right endpoint of the current interval
heap.pop();
heap.push(sec[i].r);
}
}
printf("%lld", heap.size());
return 0;
}
Originality is not easy.
Reprint please indicate the source
If it helps you Don't forget to praise and support
边栏推荐
- Leetcode-1200: minimum absolute difference
- Shutter web hardware keyboard monitoring
- Leetcode-556: the next larger element III
- [learning] database: several cases of index failure
- [rust notes] 15 string and text (Part 1)
- Series of how MySQL works (VIII) 14 figures explain the atomicity of MySQL transactions and the principle of undo logging
- MySQL advanced part 2: SQL optimization
- Ffmpeg build download (including old version)
- Niu Mei's math problems
- Leetcode-6111: spiral matrix IV
猜你喜欢
随机推荐
什么是套接字?Socket基本介绍
Leetcode dynamic programming
[rust notes] 14 set (Part 2)
Winter vacation water test 1 Summary
Leetcode-22: bracket generation
4. Object mapping Mapster
阿里新成员「瓴羊」正式亮相,由阿里副总裁朋新宇带队,集结多个核心部门技术团队
高斯消元 AcWing 884. 高斯消元解异或线性方程组
How to generate an image from text on fly at runtime
容斥原理 AcWing 890. 能被整除的数
博弈论 AcWing 894. 拆分-Nim游戏
Bash exercise 17 writing scripts to install the server side of FRP reverse proxy software
Redis-01.初识Redis
Doing SQL performance optimization is really eye-catching
4. 对象映射 - Mapping.Mapster
Dataframe (1): introduction and creation of dataframe
2021apmcm post game Summary - edge detection
1.13 - RISC/CISC
Groupbykey() and reducebykey() and combinebykey() in spark
[leetcode] day94 reshape matrix