ZOJ 3888 Twelves Monkeys (预处理+优先队列)

题目链接:ZOJ 3888 Twelves Monkeys

题意:题目描写叙述起来比較绕,直接讲案例

9 3 3

9 1

6 1

4 1

6

7

2

输入n,m,q。n限制了你询问的年份,m台时光机,q个询问。

接下来m行,描写叙述从第9年回到第1年。

接下里就是三个询问。

第一个询问6的答案是5.

1.从第6年回到第1年 (6-1)直接做时光机2,(6-7-8-9-1)过3年之后能够做时光机3。

有两个路径能够走(题目中要求至少两条路径)。所以是有效的方案。

2.从第6年回到第2年

.....

思路:先按第一维排序,查找大于等于X(X是询问的年份)的有多少个,若个数小于2。该方案不可行,若个数大于等于2。在查找全部第一维大于等于X的区间中第二维的第二小的值,答案就是X-第二小的值

AC代码:

#include <stdio.h>
#include <algorithm>
#include <queue>
#include <string.h>
using namespace std;

struct node {
    int a,b;
};
struct node p[50010];
bool cmp(node a,node b) {
    if(a.a!=b.a) return a.a>b.a;
    return a.b>b.b;
}

int sum[50010];
priority_queue<int, vector<int>, greater<int> > que;
int main() {
    int i,j;
    int n,m,q,c;
    while(scanf("%d %d %d",&n,&m,&q)!=EOF) {
        while(!que.empty())
            que.pop();
        for(i=0; i<m; i++) {
            scanf("%d %d",&p[i].a,&p[i].b);
        }
        sort(p,p+m,cmp);
        sum[1]=0;
        int a1,a2;
        for(i=n,j=0; i>=2; i--) {
            for(; j<m; j++) {
                if(i<=p[j].a) que.push(p[j].b);
                else  break;
            }
            if((int)que.size()<2) {
                sum[i]=0;
                continue;
            }
            a1=que.top();
            que.pop();
            a2=que.top();
            que.pop();
            que.push(a1);
            que.push(a2);
            if(i-a2<0) sum[i]=0;
            else sum[i]=i-a2;
        }
        while(q--) {
            scanf("%d",&c);
            printf("%d\n",sum[c]);
        }
    }
    return 0;
}
时间: 2024-10-26 17:48:33

ZOJ 3888 Twelves Monkeys (预处理+优先队列)的相关文章

zoj 3888 Twelves Monkeys 二分+线段树维护次小值

链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3888 Twelves Monkeys Time Limit: 5 Seconds      Memory Limit: 32768 KB James Cole is a convicted criminal living beneath a post-apocalyptic Philadelphia. Many years ago, the Earth's surf

zoj 3888 Twelves Monkeys(zoj 2015年7月月赛)

Twelves Monkeys Time Limit: 5 Seconds      Memory Limit: 32768 KB James Cole is a convicted criminal living beneath a post-apocalyptic Philadelphia. Many years ago, the Earth's surface had been contaminated by a virus so deadly that it forced the sur

Twelves Monkeys (multiset解法 141 - ZOJ Monthly, July 2015 - H)

Twelves Monkeys Time Limit: 5 Seconds      Memory Limit: 32768 KB James Cole is a convicted criminal living beneath a post-apocalyptic Philadelphia. Many years ago, the Earth's surface had been contaminated by a virus so deadly that it forced the sur

[主席树]ZOJ3888 Twelves Monkeys

题意:有n年,其中m年可以乘时光机回到过去,q个询问 下面m行,x,y 表示可以在y年穿越回x年, 保证y>x 下面q个询问, 每个询问有个年份k 问的是k年前面 有多少年可以通过一种以上($\ge 2$)方法穿越回去的, 其中时光机只能用一次 比如案例 9 3 3 9 1 6 1 4 1 6 7 2 如图 对于询问 6这一年:1.穿越回第1年  2.等时间过呀过呀过到第9年,再穿越回第1年 那么第1年就有两种方法可以穿越回去, 同理, 2.3.4年也有同样两种方法(回到1再等时间过呀过 过到2

ZOJ 3888

Twelves Monkeys Time Limit: 5 Seconds      Memory Limit: 32768 KB James Cole is a convicted criminal living beneath a post-apocalyptic Philadelphia. Many years ago, the Earth's surface had been contaminated by a virus so deadly that it forced the sur

Zoj 1671 Walking Ant(BFS+优先队列||记忆化搜索)

Walking Ant Time Limit: 2 Seconds Memory Limit: 65536 KB 点击打开链接 Ants are quite diligent. They sometimes build their nests beneath flagstones. Here, an ant is walking in a rectangular area tiled with square flagstones, seeking the only hole leading to

POJ 1862 &amp; ZOJ 1543 Stripies(贪心 | 优先队列)

题目链接: PKU:http://poj.org/problem?id=1862 ZJU:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=543 Description Our chemical biologists have invented a new very useful form of life called stripies (in fact, they were first called in Russian -

ZOJ 3953:Intervals(优先队列+思维)

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5572 题意:给出n个线段,问最少删除几个线段可以使得任意一个点不会被三个以上的线段覆盖. 思路:首先离散化坐标. 然后想着按右端点从小到大排序后直接O(n)扫的贪心,但是后面发现错误了. 应该按左端点从小到大排序,然后用一个优先队列(按右端点从大到小排序). 开始扫坐标,当有与该坐标相同的点的左端点就进队,用ed[]记录右端点的位置. 用cnt记录当前这个点有多少个区间覆盖,

zoj 3888 线段树 ***

卡n^2,用线段树降到nlogn 记录每个点上所覆盖线段的次小值,保证能有两条路径能走 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 #include<queue> 7 #include<map> 8 using namespace std; 9 #define MO