Submission #963506

# Submission time Handle Problem Language Result Execution time Memory
963506 2024-04-15T07:46:55 Z BhavayGoyal Watching (JOI13_watching) C++14
0 / 100
159 ms 262144 KB
#include <bits/stdc++.h>
using namespace std;

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template<class T> using oset = 
            tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

#define ll long long
#define ld long double
#define ar array
#define vi vector<int>
#define vii vector<vector<int>>
#define pii pair<int, int>
#define pb push_back
#define all(x) x.begin(), x.end()
#define f first
#define s second
#define endl "\n"

const int MOD = 1e9+7;
const int inf = 1e9;
const ll linf = 1e18;

const int d4i[4]={-1, 0, 1, 0}, d4j[4]={0, 1, 0, -1};
const int d8i[8]={-1, -1, 0, 1, 1, 1, 0, -1}, d8j[8]={0, 1, 1, 1, 0, -1, -1, -1};

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());


// -------------------------------------------------- Main Code --------------------------------------------------

int dp[2001][2001];
int n, nxtP[2001], nxtQ[2001];

int sol(int idx, int p) {
    if (idx >= n) return 0;
    if (dp[idx][p] != -1) return dp[idx][p];
    int ans = inf;
    if (p) ans = min(ans, sol(nxtP[idx]+1, p-1));
    ans = min(ans, sol(nxtQ[idx]+1, p) + 1);
    return dp[idx][p] = ans;
}

void sol() {
    int p, q; cin >> n >> p >> q;
    p = min(p, n); q = min(q, n);

    int arr[n];
    for (int i = 0; i < n; i++) cin >> arr[i];
    sort(arr, arr+n);

    auto fiss = [&](int mid) {
        for (int i = 0; i <= n; i++) for (int j = 0; j <= p; j++) dp[i][j] = -1;
        for (int i = 0; i < n; i++) {
            nxtP[i] = upper_bound(arr, arr+n, arr[i]+mid-1) - arr - 1;
            nxtQ[i] = upper_bound(arr, arr+n, arr[i]+2*mid-1) - arr - 1;
        }

        return (sol(0, p) <= q);
    };

    int i = 0, j = inf, ans = inf;
    while (i <= j) {
        int mid = (i+j)/2;
        if (fiss(mid)) ans = mid, j = mid-1;
        else i = mid+1;
    }
    cout << ans << endl;
}

int main () {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t = 1;
    // cin >> t; 
    while (t--) {
        sol();
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2392 KB Output is correct
2 Runtime error 159 ms 262144 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 8 ms 15448 KB Output is correct
2 Runtime error 141 ms 262144 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -