博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
洛谷P2709 小B的询问
阅读量:6815 次
发布时间:2019-06-26

本文共 2023 字,大约阅读时间需要 6 分钟。

莫队模版

本来想能不学莫队就不学,但是这次比赛被莫队卡得好惨,于是学了一发。。

先切道模板题。。

最普通的莫队就是把序列分块,然后按照询问所在的块来排序,减少指针的移动次数。。

#include 
#define INF 0x3f3f3f3f#define full(a, b) memset(a, b, sizeof a)using namespace std;typedef long long ll;inline int lowbit(int x){ return x & (-x); }inline int read(){ int X = 0, w = 0; char ch = 0; while(!isdigit(ch)) { w |= ch == '-'; ch = getchar(); } while(isdigit(ch)) X = (X << 3) + (X << 1) + (ch ^ 48), ch = getchar(); return w ? -X : X;}inline int gcd(int a, int b){ return b ? gcd(b, a % b) : a; }inline int lcm(int a, int b){ return a / gcd(a, b) * b; }template
inline T max(T x, T y, T z){ return max(max(x, y), z); }template
inline T min(T x, T y, T z){ return min(min(x, y), z); }template
inline A fpow(A x, B p, C lyd){ A ans = 1; for(; p; p >>= 1, x = 1LL * x * x % lyd)if(p & 1)ans = 1LL * x * ans % lyd; return ans;}const int N = 50005;int n, m, k, a[N], cnt[N], ans, res[N];struct Query { int l, r, id, block; bool operator < (const Query &rhs) const { return (block ^ rhs.block) ? l < rhs.l : (block & 1) ? r < rhs.r : r > rhs.r; }}query[N];void add(int k){ cnt[a[k]] ++; ans += 2 * cnt[a[k]] - 1;}void remove(int k){ cnt[a[k]] --; ans += -2 * cnt[a[k]] - 1;}int main(){ n = read(), m = read(), k = read(); int t = (int)sqrt(n); for(int i = 1; i <= n; i ++) a[i] = read(); for(int i = 1; i <= m; i ++){ query[i].l = read(), query[i].r = read(); query[i].id = i, query[i].block = (query[i].l - 1) / t + 1; } sort(query + 1, query + m + 1); int l = 1, r = 0; for(int i = 1; i <= m; i ++){ int curL = query[i].l, curR = query[i].r; while(l < curL) remove(l ++); while(r < curR) add(++ r); while(l > curL) add(-- l); while(r > curR) remove(r --); res[query[i].id] = ans; } for(int i = 1; i <= m; i ++){ printf("%d\n", res[i]); } return 0;}

转载于:https://www.cnblogs.com/onionQAQ/p/10858207.html

你可能感兴趣的文章
对react中setState的总结
查看>>
[回炉计划]-实现一个图片预加载
查看>>
正则表达式
查看>>
360前端星计划学习-html
查看>>
专注dApp高效执行和高并发的下一代公有链
查看>>
ONE-sys 整合前后端脚手架 koa2 + pm2 + vue-cli3.0 + element
查看>>
携带更方便功能全 iPone与Apple Watch球形尿袋
查看>>
行为型模式:策略模式
查看>>
实现批量数据增强 | keras ImageDataGenerator使用
查看>>
太忙女友消息未及时回复,分手吗?python微信自动消息帮你谈恋爱
查看>>
Java 多线程NIO学习
查看>>
命名实体识别
查看>>
动态切换的动态代理
查看>>
电商项目(下)
查看>>
vue 数字滚动递增效果
查看>>
vue2.0中父子,兄弟组件的传值2
查看>>
Spring Boot注解常用!!!看了就可以开发大量项目了
查看>>
音频编码 Audio Converter
查看>>
SQL - case when then else end 的用法
查看>>
web优化是http缓存(上)
查看>>