zoukankan      html  css  js  c++  java
  • hdu5662 YJQQQAQ and the function (单调栈)

    Problem Description
    YJQQQAQ has an array A of length n. He defines a function fl,r,k where l,r,k are positive integers that satisfies lr and r×kn, and the value of the function equals to p×q×k where p equals to the sum value of Al×k,A(l+1)×k,...,Ar×k and q equals to the minimal value of them. YJQQQAQ wants to choose the positive integers l,r,k carefully to maximize the value of the function.
     

    Input
    The first line contains an integer T(1T3)——The number of the test cases. For each test case:
    The first line contains an integers n(1n300,000).
    The second line contains n integers describing the given array A, the ith integer is Ai(1Ai1,000,000). Between each two adjacent integers there is a white space separated.
     

    Output
    For each test case, the only line contains the only integer that is the maximum value of the function.
     

    Sample Input
    1 3 2 3 1
     

    Sample Output
    10
    题意:给你n个数,你要找到3个数,l,r,k,l<=r,r*k<=n且p*q*sqrt(k)最小,其中p是A[l*k],A[(l+1)*k]...,A[r*k]的和,q是这些数的最小值。
    思路:看到求一些数的和乘这些数中最小值的最小值,容易想到单调栈,我们只要先把在k确定的情况下找出所有符合条件的A[],然后再用单调栈找出以每一个数位最小值的左右边界,然后更新ans的最大值就行了。ps:还是不习惯用单调栈,所以用两遍单调队列做了,时间复杂度会差一下,不过差不多。
    #include<iostream>
    #include<stdio.h>
    #include<stdlib.h>
    #include<string.h>
    #include<math.h>
    #include<vector>
    #include<map>
    #include<set>
    #include<string>
    #include<bitset>
    #include<algorithm>
    using namespace std;
    #define lth th<<1
    #define rth th<<1|1
    typedef long long ll;
    typedef long double ldb;
    #define inf 99999999
    #define pi acos(-1.0)
    #define maxn 300050
    int b[maxn],a[maxn];
    ll sum[maxn];
    int L[maxn],R[maxn];
    int q[511111][2];
    
    int main()
    {
        int n,m,i,j,T,l,r,k;
        int front,rear;
        ll ans;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d",&n);
            for(i=1;i<=n;i++){
                scanf("%d",&a[i]);
            }
            ans=0;
            for(k=1;k<=n;k++){
                int tot=0;
                sum[0]=0;
                for(i=1;i*k<=n;i++){
                    tot++;
                    b[tot]=a[i*k];
                    sum[tot]=sum[tot-1]+b[tot];
                }
                front=1,rear=0;
    
                for(i=1;i<=tot;i++){
                    while(front<=rear && q[rear][0]>=b[i] ){
                        rear--;
                    }
                    if(rear==0){
                        L[i]=1;
                    }
                    else{
                        L[i]=q[rear][1]+1;
                    }
                    rear++;
                    q[rear][0]=b[i];q[rear][1]=i;
    
                }
    
    
                front=1,rear=0;
    
                for(i=tot;i>=1;i--){
                    while(front<=rear && q[rear][0]>=b[i] ){
                        rear--;
                    }
                    if(rear==0){
                        R[i]=tot;
                    }
                    else{
                        R[i]=q[rear][1]-1;
                    }
                    rear++;
                    q[rear][0]=b[i];q[rear][1]=i;
                    ans=max(ans,(sum[R[i] ]-sum[L[i]-1 ])*b[i]*(int)sqrt((double)k)  );
    
                }
            }
            printf("%lld
    ",ans);
    
    
    
    
        }
        return 0;
    
    
    
    
    
    }
    


  • 相关阅读:
    二叉树非递归遍历
    二叉树之统计二叉树的节点个数
    C语言32个关键字(2)
    C语言32个关键字(1)
    C语言常用字符串操作函数总结
    面向对象的四大特征
    C语言之生产者与消费者模型
    菜鸟随笔(4)---read函数与fread函数的区别
    菜鸟随笔(3)---三种进程学习.孤儿进程.僵尸进程.守护进程
    进程通信——管道、消息队列、共享内存、信号量
  • 原文地址:https://www.cnblogs.com/herumw/p/9464495.html
Copyright © 2011-2022 走看看