/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 7ms 532.0 KiB
#3 Accepted 7ms 564.0 KiB
#4 Accepted 7ms 320.0 KiB
#5 Accepted 7ms 788.0 KiB
#6 Accepted 7ms 320.0 KiB
#7 Accepted 7ms 320.0 KiB
#8 Accepted 8ms 532.0 KiB
#9 Accepted 9ms 652.0 KiB
#10 Accepted 11ms 1.812 MiB
#11 Accepted 15ms 2.832 MiB
#12 Accepted 15ms 2.93 MiB
#13 Accepted 15ms 2.703 MiB
#14 Accepted 15ms 2.938 MiB
#15 Accepted 16ms 2.918 MiB
#16 Accepted 16ms 2.84 MiB
#17 Accepted 41ms 2.043 MiB
#18 Accepted 242ms 656.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);
    }
    ll ans = 0, score = LLONG_MAX;
    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;
        if(score > c) ans = i, score = c;
    }
    cout << ans << 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:29:08
Judged At
2024-11-11 03:31:33
Judged By
Score
100
Total Time
242ms
Peak Memory
2.938 MiB