/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 7ms 560.0 KiB
#3 Accepted 7ms 532.0 KiB
#4 Accepted 7ms 324.0 KiB
#5 Accepted 7ms 488.0 KiB
#6 Accepted 7ms 564.0 KiB
#7 Accepted 7ms 744.0 KiB
#8 Accepted 7ms 320.0 KiB
#9 Accepted 8ms 656.0 KiB
#10 Accepted 11ms 1.766 MiB
#11 Accepted 16ms 2.934 MiB
#12 Accepted 16ms 2.934 MiB
#13 Accepted 14ms 2.785 MiB
#14 Accepted 15ms 2.75 MiB
#15 Accepted 17ms 2.938 MiB
#16 Accepted 18ms 2.93 MiB
#17 Accepted 47ms 2.043 MiB
#18 Accepted 284ms 660.0 KiB

Code

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
typedef long long   ll;
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout<<it<<" "; cout<<endl;
#define _ASRafi__   ios::sync_with_stdio(false); cin.tie(0);
using namespace std;
using namespace __gnu_pbds;

void solve()
{
    ll n, k, mx = 0;
    cin >> n >> k;
    gp_hash_table<ll, ll> mp;
    for (int i = 0; i < n; i++)
    {
        ll x; cin >> x;
        mp[x]++;
        mx = max(mx, x);
    }
    set<pair<ll, ll>> st; // {cnt, val}
    for(ll i = 1; i <= k; i++)
    {
        ll c = 0;
        for(ll j = i; j <= mx; j += i)
        {
            if(mp.find(j) != mp.end()) c += j * mp[j];
        }
        if(c == 0)
        {
            cout << i << endl;
            return;
        }
        // cout << i << " -> " << c << endl;
        st.insert({c, i});
    }
    cout << st.begin()->S << endl;
    return;
}

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

Information

Submit By
Type
Submission
Problem
P1039 Prince Roy, the undisputed ruler of the world
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-06 19:25:48
Judged At
2024-11-11 03:31:33
Judged By
Score
100
Total Time
284ms
Peak Memory
2.938 MiB