hdu 4777 Rabbit Kingdom(树状数组)

题目链接:hdu 4777 Rabbit Kingdom

题目大意:一个兔子王国,有N只兔子,每只兔子有一个重量,如果两只兔子的重量不互质,那么就会干架,现在国王想将l r之间的兔子关进监狱,它想知道会有多少只兔子不会和别的兔子干架。

解题思路:预处理出每只兔子的L,R表示向左和向右最近会与该兔子发生冲突的兔子,预处理的时候只要将每只兔子的重量分解成质因子后遍历两遍。

对于询问,将询问按照右区间排序,碰到i,则L位置+1,碰到R,则i位置+1,L位置-1。(如果L ≤ l && r ≤ R,那么兔子在这个l,r询问中是不会与其他兔子冲突)

这样l~r区间统计的即为会打架的兔子。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <vector>
#include <algorithm>

using namespace std;

const int maxn = 200005;

int np, pri[maxn], vis[maxn];
void prime_table(int n) {
    np = 0;
    for (int i = 2; i <= n; i++) {
        if (vis[i]) continue;
        pri[np++] = i;

        for (int j = i * 2; j <= n; j += i)
            vis[j] = 1;
    }
    vis[1] = 1;
}

#define lowbit(x) ((x)&(-x))

struct Seg {
    int l, r, id;
    Seg (int l = 0, int r = 0, int id = 0) {
        this->l = l;
        this->r = r;
        this->id = id;
    }
    friend bool operator < (const Seg& a, const Seg& b) {
        return a.r < b.r;
    }
};

int N, M, L[maxn], P[maxn];
int fenw[maxn], ans[maxn];
vector<int> g[maxn];
vector<Seg> vec, que;

inline void add (int x, int d) {
    if (x <= 0)
        return;
    while (x <= N) {
        fenw[x] += d;
        x += lowbit(x);
    }
}

inline int sum (int x) {
    int ret = 0;
    while (x) {
        ret += fenw[x];
        x -= lowbit(x);
    }
    return ret;
}

void init () {
    vec.clear();
    que.clear();

    int x;
    for (int i = 1; i <= N; i++) {
        scanf("%d", &x);
        g[i].clear();
        for (int j = 0; j < np; j++) {
            if (x % pri[j] == 0) {
                g[i].push_back(pri[j]);
                while (x % pri[j] == 0)
                    x /= pri[j];
            }

            if (vis[x] == 0) {
                g[i].push_back(x);
                break;
            }
        }
    }

    for (int i = 0; i < maxn; i++) P[i] = 0;
    for (int i = 1; i <= N; i++) {
        int tmp = 0;
        for (int j = 0; j < g[i].size(); j++) {
            tmp = max(tmp, P[g[i][j]]);
            P[g[i][j]] = i;
        }
        L[i] = tmp;
        vec.push_back(Seg(tmp, i, 0));
    }

    for (int i = 0; i < maxn; i++) P[i] = N + 1;
    for (int i = N; i; i--) {
        int tmp = N + 1;
        for (int j = 0; j < g[i].size(); j++) {
            tmp = min(tmp, P[g[i][j]]);
            P[g[i][j]] = i;
        }
        vec.push_back(Seg(i, tmp, 1));
    }

    int l, r;
    for (int i = 1; i <= M; i++) {
        scanf("%d%d", &l, &r);
        que.push_back(Seg(l, r, i));
    }
}

void solve () {
    sort(que.begin(), que.end());
    sort(vec.begin(), vec.end());
    memset(fenw, 0, sizeof(fenw));

    int mv = 0;
    for (int i = 0; i < que.size(); i++) {
        while (mv < vec.size() && vec[mv].r <= que[i].r) {
            add(vec[mv].l, 1);
            if (vec[mv].id)
                add(L[vec[mv].l], -1);
            mv++;
        }
        int tmp = sum(que[i].r) - sum(que[i].l - 1);
        ans[que[i].id] = que[i].r - que[i].l + 1 - tmp;
    }
}

int main () {
    prime_table(maxn);
    while (scanf("%d%d", &N, &M) == 2 && N + M) {
        init();
        solve();
        for (int i = 1; i <= M; i++)
            printf("%d\n", ans[i]);
    }
    return 0;
}
时间: 2024-10-18 01:47:28

hdu 4777 Rabbit Kingdom(树状数组)的相关文章

hdu4777 Rabbit Kingdom 树状数组+区间操作+素数打表

题目大意:给N个数,有M个查询,问区间[L,R]之间有多少个数与这个区间内的其他数都互质. 思路:dp显然很难搞,既然是求区间就试试每一个数最大可以对答案产生贡献的区间,即预处理出一个数在(lp,rp)内始终与其他数互质的最大区间 则lp和rp分别为左边和右边第一个与他不互质的数的位置 处理的时候素数打表然后从左到右始终更新对于某一个素因子出现的最右的位置然后更新l,r,可以做到 然后就是把查询按l从小到大排序,这样的话每处理一个新的查询,对于在这个查询的 l 左边的数就可以不用考虑了 然后我们

HDU 4777 Rabbit Kingdom(树状数组)

HDU 4777 Rabbit Kingdom 题目链接 题意:给定一些序列,每次询问一个区间,求出这个区间和其他数字都互质的数的个数 #include <cstdio> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int INF = 0x3f3f3f3f; typedef long long ll; const ll N = 200

HDU 1541 Stars (树状数组)

Problem Description Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars that are not higher and not to the right of the given

HDU 3854 Glorious Array(树状数组)

题意:给一些结点,每个结点是黑色或白色,并有一个权值.定义两个结点之间的距离为两个结点之间结点的最小权值当两个结点异色时,否则距离为无穷大.给出两种操作,一种是将某个结点改变颜色,另一个操作是询问当前距离小于K的结点有多少对,K是一个定值. 思路:先求最初时候小于k的结点有多少对,然后每次改变颜色的时候,统计该点左侧和右侧各有多少同色和异色的结点(这一步使用树状数组),分别处理就行.另外需要预处理离某个结点最近的两个距离小于K的结点的位置. 代码写的略乱. #include<cstdio> #

HDU 3333 Turing Tree 树状数组 离线查询

题意: 给你一个数列,然后有n个查询,问你给定区间中不同数字的和是多少. 思路还是比较难想的,起码对于蒟蒻我来说. 将区间按照先右端点,后左端点从小到大排序之后,对于每个查询,我只要维护每个数字出现的最后一次就可以了(这个结论稍微想一下就可以证明是正确的). 然后就是简单的点更新,区间求和问题了- #include <cstdio> #include <cstring> #include <iostream> #include <map> #include

HDU 2689 Sort it (树状数组)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2689 Sort it Problem Description You want to processe a sequence of n distinct integers by swapping two adjacent sequence elements until the sequence is sorted in ascending order. Then how many times it 

HDU 2492 Ping pong (树状数组)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2492 Ping pong Problem Description N(3<=N<=20000) ping pong players live along a west-east street(consider the street as a line segment). Each player has a unique skill rank. To improve their skill rank

HDU 1541 Stars(树状数组)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1541 解析: 题意:大概就是计算每颗星星左下边包括了多少颗星星,这个数值就是level.左下边不包括本身,不超过本身的x,y的坐标,可以等于.问每种level有多少颗星星. 这题,一开始想不到怎么用到树状数组,后来看了一下,发现题目给的数据是已经按x,y排好序的,所以我们可以不用管y的值. 注意: 1.每次输入一个坐标对之后,都要计算一下这个它的level. 2.此题的x坐标可以为0,而树状数组是从

HDU 1892 二维树状数组

See you~ Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 3485    Accepted Submission(s): 1103 Problem Description Now I am leaving hust acm. In the past two and half years, I learned so many kno