codeforces 1000F One Occurrence(线段树、想法)
codeforces 1000F One Occurrence
题意
多次询问lr之间只出现过一次的数是多少。
题解
将查询按照左端点排序,对于所有值维护它在当前位置后面第二次出现是什么时候,那么查询区间最大值即可。
代码
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define rep(i, a, b) for(int i=(a); i<(b); i++)
#define sz(a) (int)a.size()
#define de(a) cout << #a << " = " << a << endl
#define dd(a) cout << #a << " = " << a << " "
#define all(a) a.begin(), a.end()
#define endl "\n"
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
//---
const int N = 500050;
int n, m;
int a[N], ans[N], nx[N], vis[N];
bool in[N];
vector<pii> q[N];
struct Seg {
#define ls (rt<<1)
#define rs (ls|1)
static const int N = ::N*4+22;
int ma[N], ind[N];
void upd(int p, int c, int l, int r, int rt) {
if(l == r) {
ma[rt] = c;
ind[rt] = l;
return ;
}
int mid = l+r>>1;
if(p<=mid) upd(p, c, l, mid, ls);
else upd(p, c, mid+1, r, rs);
ma[rt] = max(ma[ls], ma[rs]);
ind[rt] = ma[ls]>ma[rs] ? ind[ls] : ind[rs];
}
void upd(pii &a, pii b) {
if(a < b) a = b;
}
pii qry(int L, int R, int l, int r, int rt) {
if(L<=l && r<=R) return mp(ma[rt], a[ind[rt]]);
int mid = l+r>>1;
pii ans = mp(0, 0);
if(L<=mid) upd(ans, qry(L, R, l, mid, ls));
if(R>=mid+1) upd(ans, qry(L, R, mid+1, r, rs));
return ans;
}
}seg;
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(0);
///read
cin >> n;
rep(i, 1, n+1) cin >> a[i];
cin >> m;
rep(i, 1, m+1) {
int x, y;
cin >> x >> y;
q[x].pb(mp(y, i));
}
///solve
for(int i = n; i; --i) {
nx[i] = vis[a[i]];
if(!nx[i]) nx[i] = n+1;
vis[a[i]] = i;
}
memset(vis, 0, sizeof(vis));
rep(i, 1, n+1) vis[nx[i]] = 1;
rep(i, 1, n+1) if(!vis[i]) seg.upd(i, nx[i], 1, n, 1);
rep(i, 1, n+1) {
for(auto t : q[i]) {
auto c = seg.qry(i, t.fi, 1, n, 1);
ans[t.se] = c.fi>t.fi ? c.se : 0;
}
if(nx[i]<=n) seg.upd(nx[i], nx[nx[i]], 1, n, 1);
}
rep(i, 1, m+1) cout << ans[i] << endl;
return 0;
}
codeforces 1000F One Occurrence(线段树、想法)的更多相关文章
- Codeforces 1000F One Occurrence 主席树|| 离线+线段树
One Occurrence 为什么我半年前这么菜呀, 这种场只A三题... 我们在主席树 || 线段树上维护每个数的右边和它一样的数在哪里, 然后就变成了区间求最大值. 注意加进去的时候要把它右边一 ...
- Buses and People CodeForces 160E 三维偏序+线段树
Buses and People CodeForces 160E 三维偏序+线段树 题意 给定 N 个三元组 (a,b,c),现有 M 个询问,每个询问给定一个三元组 (a',b',c'),求满足 a ...
- CodeForces 877E DFS序+线段树
CodeForces 877E DFS序+线段树 题意 就是树上有n个点,然后每个点都有一盏灯,给出初始的状态,1表示亮,0表示不亮,然后有两种操作,第一种是get x,表示你需要输出x的子树和x本身 ...
- [Codeforces 1197E]Culture Code(线段树优化建图+DAG上最短路)
[Codeforces 1197E]Culture Code(线段树优化建图+DAG上最短路) 题面 有n个空心物品,每个物品有外部体积\(out_i\)和内部体积\(in_i\),如果\(in_i& ...
- [Codeforces 1199D]Welfare State(线段树)
[Codeforces 1199D]Welfare State(线段树) 题面 给出一个长度为n的序列,有q次操作,操作有2种 1.单点修改,把\(a_x\)修改成y 2.区间修改,把序列中值< ...
- [Codeforces 316E3]Summer Homework(线段树+斐波那契数列)
[Codeforces 316E3]Summer Homework(线段树+斐波那契数列) 顺便安利一下这个博客,给了我很大启发(https://gaisaiyuno.github.io/) 题面 有 ...
- Codeforces 1083C Max Mex [线段树]
洛谷 Codeforces 思路 很容易发现答案满足单调性,可以二分答案. 接下来询问就转换成判断前缀点集是否能组成一条链. 我最初的想法:找到点集的直径,判断直径是否覆盖了所有点,需要用到树套树,复 ...
- CodeForces 19D Points(线段树+map)
开始想不通,后来看网上说是set,就有一个想法是对每个x建一个set...然后又想直接建立两重的set就好,最后发现不行,自己想多了... 题意是给你三种操作:add (x y) 平面添加(x y) ...
- Codeforces Gym 100231B Intervals 线段树+二分+贪心
Intervals 题目连接: http://codeforces.com/gym/100231/attachments Description 给你n个区间,告诉你每个区间内都有ci个数 然后你需要 ...
随机推荐
- TCP/IP的基本概念知识
1.分层 TCP/IP通常是被分成四层协议系统的,应用层(Telnet.FTP和Email等).运输层(TCP.UDP).网络层(IP.ICMP.IGMP等)和链路层(设备驱动程序),每一层各 ...
- vue中$watch源码阅读笔记
项目中使用了vue,一直在比较computed和$watch的使用场景,今天周末抽时间看了下vue中$watch的源码部分,也查阅了一些别人的文章,暂时把自己的笔记记录于此,供以后查阅: 实现一个简单 ...
- IE浏览器上传文件后返回结果会自动弹出下载框
服务器使用的是node,其它语言的后台没测试过. 在IE低版本浏览器下,当你上传一个文件后后台会返回一些数据,但是IE浏览器会弹出下载提示. 这个问题是之前处理的了,没有细究,今天有人问到这个问题,顺 ...
- angular环境搭建时的坑
安装angular环境踩过一些坑,最终还是把工程跑起来了,这里描述一下我的步骤,不排除有些步骤是多余的,希望能对遇到同样问题的小伙伴有帮助. 下载最新版node.js. 安装node,安装过程一路点下 ...
- 【12】FtpWebRequest上传下载
下载文件 /// <summary> /// 下载文件 /// </summary> /// <param name="filename">&l ...
- SLF4+Logback 使用及配置
在SpringBoot项目中使用slf4+logback ①在pom.xml中添加依赖 <dependency> <groupId>ch.qos.logback</gro ...
- shell条件测试和流程控制
一.条件测试操作 1.test 用途:测试特定的表达式是否成立,当条件成立时,命令执行后的返回值为0,否则为其他数值 格式:test 表达式 2.常见的测试类型 ①测试文件状态 格式:[ 操作符 文件 ...
- [LeetCode]Swap Nodes in Pairs题解
Swap Nodes in Pairs: Given a linked list, swap every two adjacent nodes and return its head. For exa ...
- hdu 1880 魔咒词典 (字符串哈希)
魔咒词典 Time Limit: 8000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submis ...
- 4.spring di
spring di,即依赖注入,从应用的浅显意义来讲就是对属性赋值 1.用setter赋值,在spring的applicationContext.xml配置文件的bean下的property标签 属性 ...