Cod sursa(job #1951186)

Utilizator al_k_ponyClaudiu Babin al_k_pony Data 3 aprilie 2017 14:39:20
Problema Distincte Scor 80
Compilator cpp Status done
Runda Arhiva de probleme Marime 3.4 kb
# pragma GCC optimize("O3")
# include <bits/stdc++.h>
# define maxn 100005
# define ll long long
# define clock (clock() * 1000.0 / CLOCKS_PER_SEC)
# define rc(s) return cout << s,0
# define _ ios_base::sync_with_stdio(false);cin.tie(0);cerr.tie(0);cout.tie(0);
# define pb push_back
# define mp make_pair
# define int ll
using namespace std;
const int inf = INT_MAX;

inline int readChar();
template <class T = int> inline T readInt();
template <class T> inline void writeInt( T x, char end = 0 );
inline void writeChar( int x );
inline void writeWord( const char *s );

/** Read */

static const int buf_size = 4096;

inline int getChar() {
    static char buf[buf_size];
    static int len = 0, pos = 0;
    if (pos == len)
        pos = 0, len = fread(buf, 1, buf_size, stdin);
    if (pos == len)
        return -1;
    return buf[pos++];
}

inline int readChar() {
    int c = getChar();
    while (c <= 32)
        c = getChar();
    return c;
}

template <class T>
inline T readInt() {
    int s = 1, c = readChar();
    T x = 0;
    if (c == '-')
        s = -1, c = getChar();
    while ('0' <= c && c <= '9')
        x = x * 10 + c - '0', c = getChar();
    return s == 1 ? x : -x;
}

inline ll readLong() {
    int s = 1, c = readChar();
    ll x = 0;
    if (c == '-')
        s = -1, c = getChar();
    while ('0' <= c && c <= '9')
        x = x * 10 + c - '0', c = getChar();
    return s == 1 ? x : -x;
}

/** Write */

static int write_pos = 0;
static char write_buf[buf_size];

inline void writeChar( int x ) {
    if (write_pos == buf_size)
        fwrite(write_buf, 1, buf_size, stdout), write_pos = 0;
    write_buf[write_pos++] = x;
}

template <class T>
inline void writeInt( T x, char end ) {
    if (x < 0)
        writeChar('-'), x = -x;

    char s[24];
    int n = 0;
    while (x || !n)
        s[n++] = '0' + x % 10, x /= 10;
    while (n--)
        writeChar(s[n]);
    if (end)
        writeChar(end);
}

inline void writeWord( const char *s ) {
    while (*s)
        writeChar(*s++);
}

struct Flusher {
    ~Flusher() {
        if (write_pos)
            fwrite(write_buf, 1, write_pos, stdout), write_pos = 0;
    }
} flusher;


int n,k,m,l,r;
int a[maxn];
int lst[maxn];
vector<pair<int,int>>vec[maxn];
ll ans[maxn];
int nxt[maxn];
ll t[4 * maxn];

void upd(int nod,int l,int r,int pos,int val)
{
    if(l == r)
    {
        t[nod] = val;
        return ;
    }
    int mid = l + r >> 1;
    if(pos <= mid)
        upd(nod << 1,l,mid,pos,val);
    else upd(nod << 1 | 1,mid + 1,r,pos,val);
    t[nod] = t[nod << 1] + t[nod << 1 | 1];
}

int qry(int nod,int tl,int tr,int l,int r)
{
    if( l > r) return 0;
    if(tl == l && tr == r)
    {
        return t[nod];
    }
    int mid = tl + tr >> 1;
    return qry(nod << 1,tl,mid,l,min(mid,r)) + qry(nod << 1 | 1,mid +1,tr,max(mid + 1,l),r);
}

int32_t main(){_
    freopen("distincte.in","r",stdin);
    freopen("distincte.out","w",stdout);
    n = readInt();
    k = readInt();
    m = readInt();
    for(int i = 1;i<=n;i++)
    {
        a[i] = readInt();
        nxt[lst[a[i]]] = i;
        lst[a[i]] = i;
    }
    for(int i = 1;i<=m;i++)
    {
        l = readInt();
        r = readInt();
        vec[l].pb(mp(r,i));
    }
    for(int i = n;i>=1;i--)
    {
        upd(1,1,n,i,a[i]);
        if(nxt[i])
            upd(1,1,n,nxt[i],0);
        for(auto it : vec[i])
            ans[it.second] = qry(1,1,n,i,it.first);
    }
    for(int i = 1;i<=m;i++) writeInt(ans[i] % 666013,'\n');
}