# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
147278 | 2019-08-28T17:26:10 Z | karma | Watching (JOI13_watching) | C++11 | 204 ms | 31920 KB |
#include<bits/stdc++.h> #pragma GCC optimization ("O3") #define ll long long using namespace std; const int N = 2007; ll n, pos[N], p, q, f[N][N]; // f(i, p) = q = min f(j, p) + 1, f(i, p - 1), bool Check(ll w) { if(p * w + 2 * w * q < n) return 0; fill_n(&f[0][0], N * N, 2 * n); int k = 1, l; f[0][0] = 0; for(int j = 1; j <= n; ++j) { while(pos[j] - pos[k] + 1 > 2 * w) ++k; f[0][j] = f[0][k - 1] + 1; } for(int i = 1; i <= p; ++i) { k = l = 1; f[i][0] = 0; for(int j = 1; j <= n; ++j) { while(pos[j] - pos[k] + 1 > 2 * w) ++k; while(pos[j] - pos[l] + 1 > w) ++l; f[i][j] = min({f[i][k - 1] + 1, f[i - 1][j], f[i - 1][l - 1]}); } } return f[p][n] <= q; } int main() { ios_base::sync_with_stdio(0); cin.tie(0), cout.tie(0); if(fopen("test.inp", "r")) { freopen("test.inp", "r", stdin); freopen("test.out", "w", stdout); } cin >> n >> p >> q; for(int i = 1; i <= n; ++i) cin >> pos[i]; if(p + q >= n) return cout << 1, 0; sort(pos + 1, pos + n); ll l = 0, h = (ll)1e9; while(l <= h) { ll mid = (l + h) >> 1; if(Check(mid)) h = mid - 1; else l = mid + 1; } cout << l; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 166 ms | 31920 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Incorrect | 167 ms | 31908 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 171 ms | 31864 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 3 ms | 376 KB | Output is correct |
4 | Correct | 3 ms | 376 KB | Output is correct |
5 | Correct | 2 ms | 376 KB | Output is correct |
6 | Correct | 3 ms | 376 KB | Output is correct |
7 | Correct | 171 ms | 31832 KB | Output is correct |
8 | Incorrect | 204 ms | 31864 KB | Output isn't correct |
9 | Halted | 0 ms | 0 KB | - |