/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 14ms 960.0 KiB
#3 Accepted 14ms 948.0 KiB
#4 Accepted 14ms 948.0 KiB
#5 Accepted 14ms 844.0 KiB
#6 Accepted 15ms 796.0 KiB
#7 Accepted 15ms 960.0 KiB
#8 Accepted 17ms 840.0 KiB
#9 Accepted 20ms 728.0 KiB
#10 Accepted 23ms 952.0 KiB
#11 Accepted 25ms 1016.0 KiB
#12 Accepted 24ms 1.18 MiB
#13 Accepted 24ms 1.176 MiB
#14 Accepted 24ms 1.176 MiB
#15 Accepted 25ms 1.18 MiB
#16 Wrong Answer 24ms 796.0 KiB
#17 Wrong Answer 22ms 604.0 KiB
#18 Wrong Answer 20ms 328.0 KiB

Code


#include <bits/stdc++.h>

#ifdef LOCAL
#include "../algo/debug.h"
#else 
#define debug(...) 0
#endif

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int tt;
  cin >> tt;
  while (tt--) {
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
      cin >> a[i];
    }
    sort(a.begin(), a.end());
    int m = k;
    int inf = 1e9, mn = inf;
    for (int i = n - 1; i >= 0; i--) {
      if (a[i] < m) {
        int x = a.back() / 2 + 1;
        if (a[i] + 1 >= x) {
          mn = min(mn, a[i] + 1);
        } 
        else if (x <= m) {
          mn = min(mn, x);
        }
        m = a[i] - 1;
      }
      else if (a[i] == m) {
        m -= 1;
      }
    }
    if (mn != inf) {
      cout << mn << '\n';
      continue;
    }
    m = a.back() + 1;
    vector<long long> f(m);
    for (int i = 0; i < n; i++) {
      f[a[i]] += a[i];
    }
    long long ans = 1e18, w = 0;
    for (int i = 1; i <= k; i++) {
      long long now = 0;
      for (int j = i; j < m; j += i) {
        now += f[j];
      }
      if (now < ans) {
        ans = now;
        w = i;
      }
    }
    cout << w << '\n';
  }
  return 0;
}

Information

Submit By
Type
Submission
Problem
P1039 Prince Roy, the undisputed ruler of the world
Contest
Brain Booster #3
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-06 16:10:58
Judged At
2024-10-03 13:50:42
Judged By
Score
85
Total Time
25ms
Peak Memory
1.18 MiB