洛谷题目链接:[POI2014]KUR-Couriers

题目描述

Byteasar works for the BAJ company, which sells computer games.

The BAJ company cooperates with many courier companies that deliver the games sold by the BAJ company to its customers.

Byteasar is inspecting the cooperation of the BAJ company with the couriers.

He has a log of successive packages with the courier company that made the delivery specified for each package.

He wants to make sure that no courier company had an unfair advantage over the others.

If a given courier company delivered more than half of all packages sent in some period of time, we say that it dominated in that period.

Byteasar wants to find out which courier companies dominated in certain periods of time, if any.

Help Byteasar out!

Write a program that determines a dominating courier company or that there was none.

给一个数列,每次询问一个区间内有没有一个数出现次数超过一半

输入输出格式

输入格式:

The first line of the standard input contains two integers, \(n\) and \(m\) (\(1 \leq n, m \leq 50000\)), separated by a single space, that are the number of packages shipped by the BAJ company and the number of time periods for which the dominating courier is to be determined, respectively.

The courier companies are numbered from 1 to (at most) \(n\).

The second line of input contains \(n\) integers, \(p_1,p_2,...,p_3,p_n\) (\(1 \leq p_i \leq n\)), separated by single spaces; \(p_i\) is the number of the courier company that delivered the \(i\)-th package (in shipment chronology).

The \(m\) lines that follow specify the time period queries, one per line.

Each query is specified by two integers, \(a\) and \(b\) (\(1 \leq a \leq b \leq n\)), separated by a single space.

These mean that the courier company dominating in the period between the shipments of the \(a\)-th and the \(b\)-th package, including those, is to be determined.

In tests worth 65% of total score, the condition \(n, m \leq 50000\) holds, and in tests worth 30% of total score \(n, m \leq 5000\)

输出格式:

The answers to successive queries should be printed to the standard output, one per line.

(Thus a total of \(m\) lines should be printed.) Each line should hold a single integer: the number of the courier company that dominated in the corresponding time period, or 0 if there was no such company.

输入输出样例

输入样例#1:

7 5

1 1 3 2 3 4 3

1 3

1 4

3 7

1 7

6 6

输出样例#1:

1

0

3

0

4

说明

给一个数列,每次询问一个区间内有没有一个数出现次数超过一半


一句话题意: 给出一个数列,每次询问一个区间内有没有一个数出现次数超过一半(严格大于).


题解: 既然是静态查询区间的第几小有多少个,所以可以用主席树来维护一下区间中的每个元素个数,然后在查询的时候就判断左子树/右子树是否可以满足条件,如果都不能满足条件,就在查询的过程中返回0.其余都是基本操作.

#include<bits/stdc++.h>
using namespace std;
const int N=500000+5; int n, m, w[N], s[N], rk[N], root[N], size, cnt = 0; struct president_tree{
int ls, rs, cnt;
}t[N*20]; int gi(){
int ans = 0, f = 1; char i = getchar();
while(i<'0'||i>'9'){if(i=='-')f=-1;i=getchar();}
while(i>='0'&&i<='9'){ans=ans*10+i-'0';i=getchar();}
return ans * f;
} void update(int &node,int last,int pos,int l=1,int r=size){
node = ++cnt; t[node] = t[last]; t[node].cnt++;
if(l == r) return; int mid = (l+r>>1);
if(pos <= mid) update(t[node].ls,t[last].ls,pos,l,mid);
else update(t[node].rs,t[last].rs,pos,mid+1,r);
} int query(int node,int last,int sum,int l=1,int r=size){
if(l == r) return l; int mid = (l+r>>1);
if(2*(t[t[node].ls].cnt-t[t[last].ls].cnt) > sum)
return query(t[node].ls,t[last].ls,sum,l,mid);
if(2*(t[t[node].rs].cnt-t[t[last].rs].cnt) > sum)
return query(t[node].rs,t[last].rs,sum,mid+1,r);
return 0;
} int main(){
//freopen("data.in","r",stdin);
int l, r; n = gi(); m = gi();
for(int i=1;i<=n;i++) w[i] = gi();
memcpy(s,w,sizeof(s)); sort(s+1 , s+n+1);
size = unique(s+1 , s+n+1)-s-1;
for(int i=1;i<=n;i++) rk[i] = lower_bound(s+1 , s+size+1 , w[i])-s;
for(int i=1;i<=n;i++) update(root[i],root[i-1],rk[i]);
for(int i=1;i<=m;i++){
l = gi(); r = gi();
printf("%d\n",query(root[r],root[l-1],r-l+1));
}
return 0;
}

[POI2014] KUR-Couriers(洛谷P3567)的更多相关文章

  1. AC日记——[POI2014]KUR-Couriers 洛谷 P3567

    [POI2014]KUR-Couriers 思路: 卡空间,sb题: 代码: #include <bits/stdc++.h> using namespace std; #define m ...

  2. 洛谷P3567 KUR-Couriers [POI2014] 主席树/莫队

    正解:主席树/莫队 解题报告: 传送门! 这题好像就是个主席树板子题的样子,,,? 毕竟,主席树的最基本的功能就是,维护一段区间内某个数字的个数 但是毕竟是刚get到主席树,然后之前做的一直是第k大, ...

  3. 2018.09.14 洛谷P3567 [POI2014]KUR-Couriers(主席树)

    传送门 简单主席树啊. 但听说有随机算法可以秒掉%%%(本蒟蒻并不会) 直接维护值域内所有数的出现次数之和. 当这个值不大于区间总长度的一半时显然不存在合法的数. 这样在主席树上二分查值就行了. 代码 ...

  4. 洛谷P3567[POI2014]KUR-Couriers(主席树+二分)

    题意:给一个数列,每次询问一个区间内有没有一个数出现次数超过一半 题解: 最近比赛太多,都没时间切水题了,刚好日推了道主席树裸题,就写了一下 然后 WA80 WA80 WA0 WA90 WA80 ?? ...

  5. [洛谷P3567][POI2014]KUR-Couriers

    题目大意:给一个数列,每次询问一个区间内有没有一个数出现次数超过一半.有,输出这个数,否则输出$0$ 题解:主席树,查询区间第$\bigg\lfloor\dfrac{len+1}{2}\bigg\rf ...

  6. 洛谷P3567 [POI2014]KUR-Couriers 主席树

    挺裸的,没啥可讲的. 不带修改的主席树裸题 Code: #include<cstdio> #include<algorithm> using namespace std; co ...

  7. 洛谷 P3580 - [POI2014]ZAL-Freight(单调队列优化 dp)

    洛谷题面传送门 考虑一个平凡的 DP:我们设 \(dp_i\) 表示前 \(i\) 辆车一来一回所需的最小时间. 注意到我们每次肯定会让某一段连续的火车一趟过去又一趟回来,故转移可以枚举上一段结束位置 ...

  8. 洛谷1640 bzoj1854游戏 匈牙利就是又短又快

    bzoj炸了,靠离线版题目做了两道(过过样例什么的还是轻松的)但是交不了,正巧洛谷有个"大牛分站",就转回洛谷做题了 水题先行,一道傻逼匈牙利 其实本来的思路是搜索然后发现写出来类 ...

  9. 洛谷P1352 codevs1380 没有上司的舞会——S.B.S.

    没有上司的舞会  时间限制: 1 s  空间限制: 128000 KB  题目等级 : 钻石 Diamond       题目描述 Description Ural大学有N个职员,编号为1~N.他们有 ...

随机推荐

  1. 9 udp广播

    udp有广播  写信 tcp没有广播·  打电话 #coding=utf-8 import socket, sys dest = ('<broadcast>', 7788) # 创建udp ...

  2. LeetCode:11. ContainerWithWater(Medium)

    原题链接:https://leetcode.com/problems/container-with-most-water/description/ 题目要求:给定n个非负整数a1,a2,...,an  ...

  3. 解析HTML利器AngleSharp介绍

    解析HTML利器AngleSharp介绍 AngleSharp是基于.NET(C#)开发的专门为解析xHTML源码的DLL组件. 项目地址:https://github.com/FlorianRapp ...

  4. uwsgi配置文件

    [uwsgi] http = :9000 #the local unix socket file than commnuincate to Nginx #socket端口这个用作nginx与其通讯 s ...

  5. 【jQuery】 实用 js

    [jQuery] 实用 js 1. int 处理 parseInt(") // int 转换 isNaN(page) // 判断是否是int类型 2. string 处理 // C# str ...

  6. MySQL数据库性能优化专题

    摘录: 书:<MySQL性能调优与架构设计> 一个系列: (按顺序排一下) MySQL 数据库性能优化之缓存参数优化 http://isky000.com/database/mysql-p ...

  7. EFT4 生成实体类

    创建T4模本拷贝以下代码 <#@ template language="C#" debug="false" hostspecific="true ...

  8. Django源码分析之执行入口

    魔法门 一般我们启动django,最简单的方法是进入project 目录,这时目录结构是这样的 然后我们执行python manage.py runserver,程序就开始执行了. 那django是如 ...

  9. Markdown常用的几种语法

    在VScode上面写的,现将代码粘贴如下:(在VScode里运行下即可) # Markdown语法 # Ctrl + k v 打开侧边预览 ## 一.加粗斜体删除线 **这是要加粗的文字** *这是要 ...

  10. 详谈P(查准率),R(查全率),F1值

    怎么来的? 我们平时用的精度accuracy,也就是整体的正确率 acc = predict_right_num / predict_num 这个虽然常用,但不能满足所有任务的需求.比如,因为香蕉太多 ...