Given a sequence of n numbers a1, a2, ..., an and a number of d-queries. A d-query is a pair (i, j) (1 ≤ i ≤ j ≤ n). For each d-query (i, j), you have to return the number of distinct elements in the subsequence ai, ai+1, ..., aj.

Input

Line 1: n (1 ≤ n ≤ 30000).

Line 2: n numbers a1, a2, ..., an (1 ≤ ai ≤ 106).

Line 3: q (1 ≤ q ≤ 200000), the number of d-queries.

In the next q lines, each line contains 2 numbers i, j representing a d-query (1 ≤ i ≤ j ≤ n).

Output

For each d-query (i, j), print the number of distinct elements in the subsequence ai, ai+1, ..., aj in a single line.

Example

Input

5

1 1 2 1 3

3

1 5

2 4

3 5

Output

3

2

3

题意:

给你一个长度为n的数组,和m个询问,对于每一个询问,请你输出数组在 l 到 r 区间中,有多少个不同的数字。

思路:

用一个flag[i] 数组 表示当前区间中出现了多少次i数字。

利用flag数组进行常规的add、del 转移即可。

细节见代码:

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <queue>
  7. #include <stack>
  8. #include <map>
  9. #include <set>
  10. #include <vector>
  11. #include <iomanip>
  12. #define ALL(x) (x).begin(), (x).end()
  13. #define sz(a) int(a.size())
  14. #define all(a) a.begin(), a.end()
  15. #define rep(i,x,n) for(int i=x;i<n;i++)
  16. #define repd(i,x,n) for(int i=x;i<=n;i++)
  17. #define pii pair<int,int>
  18. #define pll pair<long long ,long long>
  19. #define gbtb ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
  20. #define MS0(X) memset((X), 0, sizeof((X)))
  21. #define MSC0(X) memset((X), '\0', sizeof((X)))
  22. #define pb push_back
  23. #define mp make_pair
  24. #define fi first
  25. #define se second
  26. #define eps 1e-6
  27. #define gg(x) getInt(&x)
  28. #define chu(x) cout<<"["<<#x<<" "<<(x)<<"]"<<endl
  29. using namespace std;
  30. typedef long long ll;
  31. ll gcd(ll a, ll b) {return b ? gcd(b, a % b) : a;}
  32. ll lcm(ll a, ll b) {return a / gcd(a, b) * b;}
  33. ll powmod(ll a, ll b, ll MOD) {ll ans = 1; while (b) {if (b % 2) { ans = ans * a % MOD; } a = a * a % MOD; b /= 2;} return ans;}
  34. inline void getInt(int *p);
  35. const int maxn = 1000010;
  36. const int inf = 0x3f3f3f3f;
  37. /*** TEMPLATE CODE * * STARTS HERE ***/
  38. pll ans[maxn];
  39. ll Ans = 0ll;
  40. int l = 0;
  41. int r = 0;
  42. struct node {
  43. int l, r, id;
  44. } a[maxn];
  45. int pos[maxn];
  46. int n, m;
  47. int len;
  48. bool cmp(node aa, node bb)
  49. {
  50. if (pos[aa.l] == pos[bb.l]) {
  51. return aa.r < bb.r;
  52. } else {
  53. return pos[aa.l] < pos[bb.l];
  54. }
  55. }
  56. int col[maxn];
  57. int flag[maxn];
  58. void add(int x)
  59. {
  60. if (flag[col[x]]++ == 0) {
  61. Ans++;
  62. }
  63. }
  64. void del(int x)
  65. {
  66. if (--flag[col[x]] == 0) {
  67. Ans--;
  68. }
  69. }
  70. int main()
  71. {
  72. //freopen("D:\\code\\text\\input.txt","r",stdin);
  73. //freopen("D:\\code\\text\\output.txt","w",stdout);
  74. gg(n);
  75. len = (int)(sqrt(n));
  76. repd(i, 1, n) {
  77. gg(col[i]);
  78. }
  79. gg(m);
  80. repd(i, 1, m) {
  81. gg(a[i].l);
  82. gg(a[i].r);
  83. a[i].id = i;
  84. pos[i] = i / len;
  85. }
  86. sort(a + 1, a + 1 + m, cmp);
  87. repd(i, 1, m) {
  88. while (l > a[i].l) {
  89. l--;
  90. add(l);
  91. }
  92. while (r < a[i].r) {
  93. r++;
  94. add(r);
  95. }
  96. while (l < a[i].l) {
  97. del(l);
  98. l++;
  99. }
  100. while (r > a[i].r) {
  101. del(r);
  102. r--;
  103. }
  104. ans[a[i].id].fi = Ans;
  105. }
  106. repd(i, 1, m) {
  107. printf("%lld\n", ans[i].fi);
  108. }
  109. return 0;
  110. }
  111. inline void getInt(int *p)
  112. {
  113. char ch;
  114. do {
  115. ch = getchar();
  116. } while (ch == ' ' || ch == '\n');
  117. if (ch == '-') {
  118. *p = -(getchar() - '0');
  119. while ((ch = getchar()) >= '0' && ch <= '9') {
  120. *p = *p * 10 - ch + '0';
  121. }
  122. } else {
  123. *p = ch - '0';
  124. while ((ch = getchar()) >= '0' && ch <= '9') {
  125. *p = *p * 10 + ch - '0';
  126. }
  127. }
  128. }

D-query SPOJ - DQUERY (莫队算法裸题)的更多相关文章

  1. BZOJ 2038: [2009国家集训队]小Z的袜子(hose)【莫队算法裸题&&学习笔记】

    2038: [2009国家集训队]小Z的袜子(hose) Time Limit: 20 Sec  Memory Limit: 259 MBSubmit: 9894  Solved: 4561[Subm ...

  2. SPOJ DQUERY - D-query (莫队算法|主席树|离线树状数组)

    DQUERY - D-query Given a sequence of n numbers a1, a2, ..., an and a number of d-queries. A d-query ...

  3. BZOJ 2038 小Z的袜子(hose) 莫队算法模板题

    题目链接: https://www.lydsy.com/JudgeOnline/problem.php?id=2038 题目大意: 作为一个生活散漫的人,小Z每天早上都要耗费很久从一堆五颜六色的袜子中 ...

  4. [Bzoj2039]小Z的袜子 (莫队算法模板题)

    2038: [2009国家集训队]小Z的袜子(hose) Time Limit: 20 Sec  Memory Limit: 259 MBSubmit: 11866  Solved: 5318[Sub ...

  5. SPOJ - DQUERY 莫队

    题意:给定\(a[1...n]\),\(Q\)次询问,每次统计\([L,R]\)范围内有多少个不同的数字 xjb乱写就A了,莫队真好玩 #include<iostream> #includ ...

  6. Luogu 1494 - 小Z的袜子 - [莫队算法模板题][分块]

    题目链接:https://www.luogu.org/problemnew/show/P1494 题目描述 作为一个生活散漫的人,小Z每天早上都要耗费很久从一堆五颜六色的袜子中找出一双来穿.终于有一天 ...

  7. bzoj 2038 小Z的袜子 莫队算法

    题意 给你一个长度序列,有多组询问,每次询问(l,r)任选两个数相同的概率.n <= 50000,数小于等于n. 莫队算法裸题. 莫队算法:将序列分为根号n段,将询问排序,以L所在的块为第一关键 ...

  8. SPOJ D-query(莫队算法模板)

    题目链接:http://www.spoj.com/problems/DQUERY/ 题目大意:给定一个数组,每次询问一个区间内的不同元素的个数 解题思路:直接套莫队的裸题 #include<cs ...

  9. 洛谷 P1972 [SDOI2009]HH的项链【莫队算法学习】

    P1972 [SDOI2009]HH的项链 题目背景 无 题目描述 HH 有一串由各种漂亮的贝壳组成的项链.HH 相信不同的贝壳会带来好运,所以每次散步完后,他都会随意取出一段贝壳,思考它们所表达的含 ...

随机推荐

  1. H3C 模拟器 pc与防火墙,交换机相连,在pc cmd下用telnet访问交换机和防火墙

    架构如图 实现目的 1 在pc端,用telnet访问核心交换机10.20.4.252 2 在pc端,用telnet访问二层交换机10.20.4.253 在此之前,pc_4,pc_5与交换机的配置不进行 ...

  2. RDD实例

    实例一: teacher.log http://bigdata.baidu.cn/zhangsan http://bigdata.baidu.cn/zhangsan http://bigdata.ba ...

  3. 微信小程序页面阻止默认滑动事件

    在页面上要加入一个悬浮的按钮,这个按钮需要可以拖动,在元素中使用catchtouchstart,catchtouchmove,catchtouchend来控制悬浮按钮的拖动,但是在ios系统中,微信小 ...

  4. 【学习笔记】使用python将最新的测试报告以附件的形式发到指定邮箱

    import smtplib, email, os, timefrom email.mime.multipart import MIMEMultipartfrom email.mime.text im ...

  5. 在依赖的框架中已经有统一异常处理的情况下,如何定制自己的统一异常处理spring boot版本

    spring boot 环境下的统一异常处理大家已经非常熟悉了,不熟悉的化可以参考 <<Spring Boot中Web应用的统一异常处理>>.公司内部的统一异常处理如下: @E ...

  6. ubuntu 16.04 server 扩容(LVM)磁盘

    因为发现我的本地server出现磁盘满了的情况 所以进行lvm的扩容 1 查看磁盘情况 df -h 原本发现 /dev/mapper/ubuntu1604--vg-root 这个磁盘满了 所以要进行扩 ...

  7. 【VS开发】static、extern分析总结

    引用请注明出处:http://blog.csdn.net/int64ago/article/details/7396325 对于写了很多小程序的人,可能static和extern都用的很少,因为sta ...

  8. Centos 7 下Gitlab 自启动设置

    禁止 Gitlab 开机自启动: systemctl disable gitlab-runsvdir.service 启用 Gitlab 开机自启动: systemctl enable gitlab- ...

  9. PLSQL中查到的数据和程序中查询到的不一样

    1.首先看下你的修改或者新增的SQL是否提交.

  10. CSP 俄罗斯方块(201604-2)

    问题描述 俄罗斯方块是俄罗斯人阿列克谢·帕基特诺夫发明的一款休闲游戏. 游戏在一个15行10列的方格图上进行,方格图上的每一个格子可能已经放置了方块,或者没有放置方块.每一轮,都会有一个新的由4个小方 ...