QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#421540#8723. 乘二liusyTL 0ms3756kbC++141.2kb2024-05-25 20:54:142024-05-25 20:54:14

Judging History

你现在查看的是最新测评结果

  • [2024-05-25 20:54:14]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3756kb
  • [2024-05-25 20:54:14]
  • 提交

answer

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>

using namespace std;
typedef long long ll;
const int N=200010;
const ll mod=1e9+7;
struct node{
    ll a, n;

}arr[N];

bool cmp(node a, node b){
    int ai = -1, bi = -1;
    int da = a.a, db = b.a;
    while(da){
        ai ++;
        da >>= 1;
    }
    while(db){
        bi ++;
        db >>= 1;
    }
    if(ai == bi){
        return a.n < b.n;
    }
    else if(ai > bi){
        return a.n < b.n - (ai - bi);
    }
    else{
        return a.n - (bi - ai) < b.n;
    }
}

int main(){
    int n, k;
    cin >> n >> k;
    for(int i = 1; i <= n; i ++){
        scanf("%d", &arr[i]);
    }
    sort(arr + 1, arr + n + 1, cmp);

    while(k --){

        arr[1].n += 1;

        sort(arr + 1, arr + n + 1, cmp);
    }

    ll ans = 0;
    for(int i = 1; i <= n; i ++){
        int ai = arr[i].a, cnt = arr[i].n;

        int tmp = 1, t = 2;
        while(cnt){
            if(cnt & 1){
                tmp = (tmp * t) % mod;
            }
            t = t * t % mod;
            cnt >>= 1;
        }

        tmp = tmp * ai % mod;
        ans = ans + tmp % mod;
    }
    cout << ans;
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3756kb

input:

3 3
7 2 1

output:

15

result:

ok 1 number(s): "15"

Test #2:

score: -100
Time Limit Exceeded

input:

200000 1605067
366760624 67854 93901 693975 27016 1046 10808 6533158 54778 500941023 77236442 32173 10431454 2 9726 1553148 89282 411182309 494073 131299543 249904771 7906930 353 9909 3632698 29156 1917186 303 737 1189004 22 1983 263 711 4106258 2070 36704 12524642 5192 123 2061 22887 66 380 1 10153...

output:


result: