zoukankan      html  css  js  c++  java
  • High Load Database(二分+前缀和)

    Henry profiles a high load database migration script. The script is the list of n transactions. The i-th transaction consists of ai queries. Henry wants to split the script to the minimum possible number of batches, where each batch contains either one transaction or a sequence of consecutive transactions, and the total number of queries in each batch does not exceed t.
    Unfortunately, Henry does not know the exact value of t for the production database, so he is going to estimate the minimum number of batches for q possible values of t: t1, t2, ... , tq. Help Henry to calculate the number of transactions for each of them.

    输入

    The first line contains a single integer n — the number of transactions in the migration script (1 ≤ n ≤ 200 000).
    The second line consists of n integers a1, a2,... , an — the number of queries in each transaction (1 ≤ ai; ∑ai ≤ 106).
    The third line contains an integer q — the number of queries (1 ≤ q ≤ 100 000).
    The fourth line contains q integers t1, t2,... , tq (1 ≤ ti ≤∑ai).

    输出

    Output q lines. The i-th line should contain the minimum possible number of batches, having at most ti queries each. If it is not possible to split the script into the batches for some ti, output “Impossible”
    instead.
    Remember that you may not rearrange transactions, only group consecutive transactions in a batch.

    样例输入 Copy

    6
    4 2 3 1 3 4
    8
    10 2 5 4 6 7 8 8
    

    样例输出 Copy

    2
    Impossible
    4
    5
    4
    3
    3
    3

    题目意思:就是说有一群连续的进制4 2 3 1 3 4,就是给你一个篮子,最需要几个篮子可以装完。
    这个题就是数据大一点,nlg(n)lg(n)可以解决,就是要记忆化一下,不然要超时
    #include<bits/stdc++.h>
    using namespace std;
    const int N = 4000010;
    inline int read()
    {
        int x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    int a[N],f[N],sum[N];
    int main()
    {
        int n;
        int max1 = 0;
        n=read();
        for(int i=1;i<=n;i++)
        {
            a[i]=read();
            max1=max(a[i],max1);
            sum[i]=sum[i-1]+a[i];
        }
        int q;
        q=read();
        while(q--)
        {
            int x;
            x = read();
            if(x < max1) puts("Impossible");
            else{
                if(f[x]){
                    printf("%d
    ",f[x]);
                }
                else{
                    int ans = 0 ;
                    int pos = 0 , i = 1 ;
                    while(i<=n)
                    {
                        int val=x+sum[pos];
                        int j=upper_bound(sum+i+1,sum+n+1,val)-sum;
                        ans++;
                        pos=j-1;
                        i=j;
                    }
                    f[x]=ans;
                    printf("%d
    ",ans);
                }
            } 
        }
        return 0;
    }
     
    
    
    



  • 相关阅读:
    Java网络编程:OSI七层模型和TCP/IP模型介绍
    Java网络编程:IP地址和端口号
    Java缓冲流的优点和原理
    Java线程的优先级设置遵循什么原则?
    java笔试题大全带答案(经典11题)
    java笔试题大全之IO流常见选择题
    java笔试手写算法面试题大全含答案
    java笔试常见的选择题
    Java的类加载器都有哪些,每个类加载器都有加载那些类,什么是双亲委派模型,是做什么的?
    Java的安全性如何理解
  • 原文地址:https://www.cnblogs.com/lipu123/p/13796303.html
Copyright © 2011-2022 走看看