• CodeForces 103D Time to Raid Cowavans 询问分块


    Time to Raid Cowavans  

    题意:

    询问 下标满足 a + b * k 的和是多少。

    题解:

    将询问分块。

    将b >= blo直接算出答案。

    否则存下来。

    存下来之后,对于每个b扫一遍数组,然后同时处理相同b的询问。

    代码:

    #include<bits/stdc++.h>
    using namespace std;
    #define Fopen freopen("_in.txt","r",stdin); freopen("_out.txt","w",stdout);
    #define LL long long
    #define ULL unsigned LL
    #define fi first
    #define se second
    #define pb push_back
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    #define max3(a,b,c) max(a,max(b,c))
    #define min3(a,b,c) min(a,min(b,c))
    #define Show(x) cout << x << ' ';
    typedef pair<int,int> pll;
    const int INF = 0x3f3f3f3f;
    const LL mod =  (int)1e9+7;
    const int N = 3e5 + 100;
    int n, m, k, p;
    int w[N];
    LL tot[N];
    LL ans[N];
    struct Node{
        int a, b, id;
    }q[N];
    bool cmp(Node x1, Node x2){
        return x1.b < x2.b;
    }
    int main(){
        scanf("%d", &n);
        for(int i = 1; i <= n; i++) scanf("%d", &w[i]);
        scanf("%d", &p);
        k = sqrt(n);
        int t = 0, a, b;
        LL tmp;
        for(int i = 1; i <= p; i++){
            scanf("%d%d", &a, &b);
            if(b >= k){
                tmp = 0;
                for(int i = a; i <= n; i += b)
                    tmp += w[i];
                ans[i] = tmp;
            }
            else {
                q[t].a = a;
                q[t].b = b;
                q[t].id = i;
                t++;
            }
        }
        sort(q,q+t,cmp);
        for(int i = 0; i < t; i++){
            if(i == 0 || q[i].b != q[i-1].b){
                b = q[i].b;
                for(int i = n; i >= 1; i--){
                    if(i+b > n) tot[i] = w[i];
                    else tot[i] = tot[i+b] + w[i];
                }
            }
            ans[q[i].id] = tot[q[i].a];
        }
        for(int i = 1; i <= p; i++){
            printf("%I64d
    ", ans[i]);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    Hive(二)CentOS7.5安装Hive2.3.3
    Hive(一)Hive初识
    CentOS7.5搭建ELK6.2.4集群及插件安装
    开发工具之Spark程序开发详解
    Java多线程编程
    数据迁移之Sqoop
    CentOS7.5之Sqoop1.4.7的安装使用
    Hadoop案例(十一)MapReduce的API使用
    Hadoop案例(十)WordCount
    BSScrollViewEdgePop
  • 原文地址:https://www.cnblogs.com/MingSD/p/10886130.html
Copyright © 2020-2023  润新知