/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 32ms 588.0 KiB
#3 Accepted 20ms 1.27 MiB
#4 Accepted 23ms 1.27 MiB
#5 Accepted 24ms 1.309 MiB
#6 Accepted 24ms 1.305 MiB
#7 Accepted 20ms 1.27 MiB
#8 Accepted 21ms 1.305 MiB
#9 Accepted 21ms 1.27 MiB
#10 Accepted 21ms 1.27 MiB
#11 Accepted 21ms 1.309 MiB
#12 Accepted 27ms 1.27 MiB
#13 Accepted 26ms 1.27 MiB
#14 Accepted 21ms 1.27 MiB
#15 Accepted 21ms 1.316 MiB
#16 Accepted 20ms 1.27 MiB
#17 Accepted 20ms 1.27 MiB
#18 Accepted 20ms 1.27 MiB
#19 Accepted 20ms 1.27 MiB
#20 Accepted 21ms 1.062 MiB

Code

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
typedef long long int ll;


using namespace std;
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define mod 1000000007

ll lcm(ll a,ll b)
{
    return (a*b)/__gcd(a,b);
}


ll binExp(ll a,ll b)
{
    if(b==0)
        return 1;

    ll res=binExp(a,b/2);

    if(b&1)
    {
        return (a*res*res)%mod;

    }
    else
    {
        return (res*res)%mod;
    }
}


bool isPrime(long long  n)
{
    if (n <= 1)
        return false;
    if (n <= 3)
        return true;
    if (n % 2 == 0 || n % 3 == 0)
        return false;

    for (long long i = 5; i * i <= n; i += 6)
    {
        if (n % i == 0 || n % (i + 2) == 0)
            return false;
    }

    return true;
}

class DisjointSet
{

public:
    vector<ll> parent,rnk,sz;
    DisjointSet(ll n)
    {
        rnk.resize(n+1,0);
        parent.resize(n+1);
        sz.resize(n+1);

        for(ll i=0; i<=n; i++)
        {
            parent[i]=i;
            sz[i]=1;
        }
    }

    ll findUPar(ll node)
    {
        if(node==parent[node])
        {
            return node;
        }
        return parent[node]=findUPar(parent[node]);
    }

    bool unionByRank(ll u,ll v)
    {
        ll ulp_u=findUPar(u);
        ll ulp_v=findUPar(v);

        if(ulp_u==ulp_v)
        {
            return false;
        }
        if(rnk[ulp_u]==rnk[ulp_v])
        {
            parent[ulp_u]=ulp_v;
            rnk[ulp_v]++;
        }
        else if(rnk[ulp_u]<rnk[ulp_v])
        {
            parent[ulp_u]=ulp_v;
        }
        else if(rnk[ulp_v]<rnk[ulp_u])
        {
            parent[ulp_v]=ulp_u;
        }
        return true;
    }

    bool unionBYSize(ll u,ll v)
    {
        ll ulp_u=findUPar(u);
        ll ulp_v=findUPar(v);
        if(ulp_u==ulp_v)
            return false;

        if(sz[ulp_u]<sz[ulp_v])
        {
            parent[ulp_u]=ulp_v;
            sz[ulp_v]+=sz[ulp_u];
        }
        else
        {
            parent[ulp_v]=ulp_u;
            sz[ulp_v]+=sz[ulp_u];
        }
        return true;
    }




};





void solve()
{
    ll n;
    cin>>n;

    ll arr[n];

    for(ll i=0; i<n; i++)
    {
        cin>>arr[i];
    }

    ll sum=0;

    for(ll i=0; i<n; i++)
    {
        sum+=arr[i];
    }

    ll ans=0;

    ll low=0, high=(ll)1e9;


    while(low<=high)
    {
        ll mid=(low+high)/2;


        ll total=(mid*(mid+1))/2;

        if(total<=sum)
        {
            low=mid+1;
        }
        else
        {
            ans=mid;
            high=mid-1;
        }
    }

    cout<<ans<<endl;

}


























int main()
{


    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);





    ll t;

   cin>>t;
   //t=1;






    ll caseNo=1;



    while(t--)
    {
        //cout<<"Case "<<caseNo<<": ";
        // caseNo++;

        solve();


    }


    return 0;




}







Information

Submit By
Type
Submission
Problem
P1114 Maximize the MEX
Contest
Brain Booster #7
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 15:18:46
Judged At
2024-11-05 15:18:46
Judged By
Score
100
Total Time
32ms
Peak Memory
1.316 MiB