/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 2ms 556.0 KiB
#3 Wrong Answer 2ms 560.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

#define FAST ios_base::sync_with_stdio(false);cin.tie(NULL);
using ll = long long;

int main() {
  FAST;
  
  int tc = 1, ti;
  cin >> tc;

  for (ti = 1; ti <= tc; ++ti) {
    int n, i, blocks;
    cin >> n;

    vector<int> a(n);
    for (i = 0; i < n; ++i) cin >> a[i];
    sort(a.begin(), a.end());

    set<int> diffs;
    for (i = 1; i < n; ++i) diffs.insert(a[i]-a[0]);

    auto possible = [&](int num, int diff) -> bool {
      multiset<int> st(a.begin(), a.end());
      vector<pair<int,int>> pairs;
      int i, x, y;
      for (i = 0; i < num; ++i) {
        x = *st.begin();
        st.erase(st.begin());
        y = x + diff;
        auto it = st.find(y);
        if (it == st.end()) return 0;
        st.erase(it);
        pairs.emplace_back(x, y);
      }
      sort(pairs.begin(), pairs.end());
      for (auto [l, r] : pairs) {
        while (!st.empty()) {
          x = *st.begin();
          if (x < l) return 0;
          if (x > r) break;
          st.erase(st.begin());
        }
      }
      return st.empty();
    };

    for (blocks = n-1; blocks >= 1; --blocks) {
      if (n % blocks != 0) continue;
      bool f = 0;
      for (int d : diffs) {
        if (possible(blocks, d)) f = 1;
      }
      if (f) break;
    }

    cout << blocks << "\n";
  }

  return 0;
}

Information

Submit By
Type
Submission
Problem
P1162 Roy and Maximum Partition
Language
C++17 (G++ 13.2.0)
Submit At
2025-02-17 19:48:46
Judged At
2025-02-17 19:48:46
Judged By
Score
0
Total Time
2ms
Peak Memory
560.0 KiB