/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 772.0 KiB
#4 Wrong Answer 20ms 1.027 MiB
#5 Wrong Answer 6ms 540.0 KiB
#6 Wrong Answer 17ms 1.027 MiB
#7 Wrong Answer 35ms 880.0 KiB
#8 Accepted 114ms 1.004 MiB
#9 Time Exceeded ≥1095ms ≥1.027 MiB
#10 Accepted 18ms 1.277 MiB
#11 Accepted 21ms 1.27 MiB
#12 Accepted 11ms 796.0 KiB
#13 Wrong Answer 24ms 1.277 MiB
#14 Accepted 35ms 1.316 MiB
#15 Wrong Answer 22ms 1.527 MiB
#16 Wrong Answer 23ms 1.281 MiB
#17 Time Exceeded ≥1099ms ≥1.277 MiB
#18 Accepted 22ms 1.277 MiB
#19 Accepted 120ms 1.531 MiB
#20 Accepted 30ms 1.277 MiB
#21 Accepted 18ms 1.027 MiB
#22 Accepted 23ms 1.277 MiB
#23 Accepted 410ms 1.32 MiB
#24 Time Exceeded ≥1096ms ≥1.277 MiB
#25 Accepted 12ms 1.277 MiB
#26 Accepted 1ms 540.0 KiB
#27 Accepted 1ms 540.0 KiB

Code

#include <bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
using namespace std;
#define ll long long
#define pb push_back
#define mod 1000000007
#define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}

const int N = 1e5 + 10;

void solve()
{
    int n, m;
    cin >> n >> m;
    vector<int> v(n + 5);
    for (int i = 0; i < n; i++)
    {
        cin >> v[i];
    }
    // ll mx=0;
    // for(int i=0;i<=m;i++)
    // {
    //     ll ans=0;
    //     for(int j=0;j<n;j++)
    //     {
    //         ans+=(v[j]^i);
    //     }
    //     mx=max(ans,mx);
    //     // if(ans==34)print(i);
    // }
    // print(mx);
    vector<int>zero(45,0);
    for (int j = 0; j < n; j++)
    {
        for (int i = 44; i >= 0; i--)
        {
            if(!CheckBit(v[j],i))
            {
                zero[i]++;
            }
        }
    }
    ll ans=0;
    vector<pair<int,int>>temp;
    for(int i=44;i>=0;i--)
    {
        if((1ll<<i <= m) && (zero[i]>n/2))
        {
            temp.push_back({(1ll<<i)*zero[i],i});
        }
        else
        {
            ans+=((n-zero[i])*(1ll<<i));
        }
    }
    // for(auto it : temp)
    // {
    //     cout<<it.F<<' '<<it.S<<endl;
    // }
    auto rec=[&](int i,int rem,auto&& self)
    {
        if(i==temp.size())return 0ll;
        int val=(((1ll<<temp[i].S)*n)-temp[i].F)+self(i+1,rem,self);//nibo na

        if((1<<temp[i].S)<=rem)
        {
            val=max(val,temp[i].F+self(i+1,rem-(1<<temp[i].S),self));//nibo
        }
        else
        {
            // print((1ll<<temp[i].S)*n);
            // print((1ll<<n)-temp[i].F);
            val=max(val,((1ll<<temp[i].S)*n)-temp[i].F+self(i+1,rem,self));
        }
        return val;
    };
    int fans=rec(0,m,rec);
    cout<<ans+fans<<endl;
}

int32_t main()
{
    Abid_52;
    int t = 1;
    // cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1054 Yet another challenge for Roy!
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-09 08:53:35
Judged At
2024-05-09 08:53:35
Judged By
Score
54
Total Time
≥1099ms
Peak Memory
≥1.531 MiB