zoukankan      html  css  js  c++  java
  • luogu P2709 小B的询问

    嘟嘟嘟


    莫队板子。
    记住:删除是先删除再移动,添加是先移动在添加!

    #include<cstdio>
    #include<iostream>
    #include<cmath>
    #include<algorithm>
    #include<cstring>
    #include<cstdlib>
    #include<cctype>
    #include<vector>
    #include<stack>
    #include<queue>
    using namespace std;
    #define enter puts("") 
    #define space putchar(' ')
    #define Mem(a, x) memset(a, x, sizeof(a))
    #define rg register
    typedef long long ll;
    typedef double db;
    const int INF = 0x3f3f3f3f;
    const db eps = 1e-8;
    const int maxn = 5e4 + 5;
    inline ll read()
    {
      ll ans = 0;
      char ch = getchar(), last = ' ';
      while(!isdigit(ch)) last = ch, ch = getchar();
      while(isdigit(ch)) ans = (ans << 1) + (ans << 3) + ch - '0', ch = getchar();
      if(last == '-') ans = -ans;
      return ans;
    }
    inline void write(ll x)
    {
      if(x < 0) x = -x, putchar('-');
      if(x >= 10) write(x / 10);
      putchar(x % 10 + '0');
    }
    
    int n, m, k, S, a[maxn];
    struct Node
    {
      int L, R, id, b;
      bool operator < (const Node& oth)const
      {
        return b < oth.b || (b == oth.b && R < oth.R);
      }
    }q[maxn];
    ll cnt = 0, tot[maxn], ans[maxn];
    
    void add(int x)
    {
      ll tp = tot[x]++;
      cnt += (tp << 1) + 1;
    }
    void del(int x)
    {
      ll tp = tot[x]--;
      cnt -= (tp << 1) - 1;
    }
    
    int main()
    {
      n = read(); m = read(); k = read(); S = sqrt(n);
      for(int i = 1; i <= n; ++i) a[i] = read();
      for(int i = 1; i <= m; ++i)
        {
          int L = read(), R = read();
          q[i] = (Node){L, R, i, (L - 1) * S + 1};
        }
      sort(q + 1, q + m + 1);
      for(int i = 1, l = 1, r = 0; i <= m; ++i)
        {
          while(l < q[i].L) del(a[l++]);
          while(l > q[i].L) add(a[--l]);
          while(r < q[i].R) add(a[++r]);
          while(r > q[i].R) del(a[r--]);
          ans[q[i].id] = cnt;
        }
      for(int i = 1; i <= m; ++i) write(ans[i]), enter;
      return 0;
    }
    
  • 相关阅读:
    Go语言基础之字符串遍历
    Go语言基础之range
    Go语言的for循环
    Go语言基础之反射
    Go语言基础之接口
    Linux编程简介
    如何使用gcc编译器
    ADS的使用
    bvp4c--语法
    어느 도시 보유 하 면 사랑 이다(事態が発生すれば、ある都市の恋はしません)【Si les villes un amour】{If have love in a city}
  • 原文地址:https://www.cnblogs.com/mrclr/p/10077860.html
Copyright © 2011-2022 走看看