3636. 数组延伸

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3636. 数组延伸相关的知识,希望对你有一定的参考价值。


#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int a[N],n,t,x;
int main(void)
{
    cin>>t;
    while(t--)
    {
        cin>>n>>x;
        for(int i=0;i<n;i++) cin>>a[i];
        long long int sum=0,psum=0;// psum 多的一块
        int cnt=N;
        for(int i=0;i<n;i++)
        {
            sum+=a[i];
            int c=0;
            for(int j=a[i];j%x==0;j/=x) c++;
            if(c<cnt)
            {
                cnt=c;
                psum=sum-a[i];
            }
        }
        printf("%lld\\n",(cnt+1)*sum+psum);
    }
    return 0;
}

以上是关于3636. 数组延伸的主要内容,如果未能解决你的问题,请参考以下文章

2021夏季每日一题 week5 完结

poj 3636

CVE-2015-3636

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

POJ3636Nested Dolls[DP LIS]