概述
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string.h>
#include<string>
#include<vector>
#include<map>
#include<queue>
#include<stack>
#include<math.h>
#include<set>
#define N 110
#define LL long long
using namespace std;
const int inf = 0x3f3f3f3f;
struct node
{
LL st, ed;
node(LL xx, LL yy)
{
st = xx, ed = yy;
}
bool friend operator < (node t1, node t2)
{
if (t1.st != t2.st)
return t1.st > t2.st;
return t1.ed > t2.ed;
}
};
int main()
{
int T;
scanf("%d", &T);
while (T--)
{
int n;
LL st, ed;
scanf("%d", &n);
priority_queue<node>w;
for (int i = 1; i <= n; i++)
{
scanf("%lld %lld", &st, &ed);
w.push(node(st, ed));
}
LL maxx = 0;
int ans = 0;
while (!w.empty())
{
node top = w.top();
w.pop();
if (top.st <= maxx && top.st + 1 <= top.ed) {
w.push(node(top.st + 1, top.ed));
continue;
}
if (top.st > maxx)ans++, maxx = max(maxx, top.st);
}
printf("%dn", ans);
}
return 0;
}
最后
以上就是帅气自行车为你收集整理的zoj4120(优先队列)的全部内容,希望文章能够帮你解决zoj4120(优先队列)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复