zoukankan      html  css  js  c++  java
  • HDU 3486 Interviewe

    http://acm.hdu.edu.cn/showproblem.php?pid=3486

    Problem Description
    YaoYao has a company and he wants to employ m people recently. Since his company is so famous, there are n people coming for the interview. However, YaoYao is so busy that he has no time to interview them by himself. So he decides to select exact m interviewers for this task.
    YaoYao decides to make the interview as follows. First he queues the interviewees according to their coming order. Then he cuts the queue into m segments. The length of each segment is , which means he ignores the rest interviewees (poor guys because they comes late). Then, each segment is assigned to an interviewer and the interviewer chooses the best one from them as the employee.
    YaoYao’s idea seems to be wonderful, but he meets another problem. He values the ability of the ith arrived interviewee as a number from 0 to 1000. Of course, the better one is, the higher ability value one has. He wants his employees good enough, so the sum of the ability values of his employees must exceed his target k (exceed means strictly large than). On the other hand, he wants to employ as less people as possible because of the high salary nowadays. Could you help him to find the smallest m?
     
    Input
    The input consists of multiple cases.
    In the first line of each case, there are two numbers n and k, indicating the number of the original people and the sum of the ability values of employees YaoYao wants to hire (n≤200000, k≤1000000000). In the second line, there are n numbers v1, v2, …, vn (each number is between 0 and 1000), indicating the ability value of each arrived interviewee respectively.
    The input ends up with two negative numbers, which should not be processed as a case.
     
    Output
    For each test case, print only one number indicating the smallest m you can find. If you can’t find any, output -1 instead.
     
    Sample Input
    11 300 7 100 7 101 100 100 9 100 100 110 110 -1 -1
     
    Sample Output
    3

    代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    const int maxn = 2e5 + 10;
    int N, K;
    int a[maxn], maxx[maxn][24];
    
    void RMQ(int num) {
        for(int i = 1; i <= N; i ++)
            maxx[i][0] = a[i];
    
        for(int j = 1; j < 23; j ++) {
            for(int i = 1; i <= num; i ++) {
                if(i + (1 << j) - 1<= num)
                    maxx[i][j] = max(maxx[i][j - 1], maxx[i + (1 << (j - 1))][j - 1]);
            }
        }
    }
    
    int QueryMax(int l, int r) {
        int k = (int)(log(r - l + 1) / log(2.0));
        int ans = max(maxx[l][k], maxx[r - (1 << k) + 1][k]);
        return ans;
    }
    
    int check(int x, int y) {
        int ans = 0;
        int st = 1, en = st + x - 1 , num=0;
        while(en <= N && st <= N && num < y) {
            ans += QueryMax(st, en);
            st += x;
            en += x;
            num ++;
            if(ans > K) return 1;
        }
        return 0;
    }
    
    int main() {
        while(~scanf("%d%d", &N, &K)) {
            if(N < 0 && K < 0) break;
            int sum = 0, mmax = 1;
            for(int i = 1; i <= N; i ++) {
                scanf("%d", &a[i]);
                sum += a[i];
                mmax = max(a[i], mmax);
            }
    
            if(sum <= K) {
                printf("-1
    ");
                continue;
            }
    
            RMQ(N);
            for(int i = max(K / mmax, 1); i <= N; i ++) {
                if(check(N / i, i)) {
                    printf("%d
    ", i);
                    break;
                }
            }
        }
        return 0;
    }
    

      改哭了。。。就是 RMQ 啊 细节错的很精彩了 又 WA 又 T 怀疑人生

    要当一个可爱迷人的 bug 制造机

  • 相关阅读:
    Java实现 蓝桥杯VIP 算法提高 Torry的困惑(提高型)
    Java实现 蓝桥杯VIP 算法提高 Torry的困惑(提高型)
    Java实现 蓝桥杯VIP 算法提高 Torry的困惑(提高型)
    Java实现 蓝桥杯VIP 算法提高 计算时间
    关于编译器和链接器的一个实验
    Windows下获取逻辑cpu数量和cpu核数量(用GetLogicalProcessorInformation,从XP3才开始有的API)
    计算机底层数据的处理方式(汇编后将所有数据都转化为补码二进制数据,所有类型信息都会消失)
    值得推荐的C/C++框架和库
    Delphi子类调用祖父类的虚函数
    [Framework Design Guideline]
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/10767076.html
Copyright © 2011-2022 走看看