# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
276612 | 2020-08-20T14:21:58 Z | arnold518 | Radio (Balkan15_RADIO) | C++14 | 1 ms | 256 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int MAXN = 1000; struct Data { int X, P, S; }; int N, K; Data A[MAXN+10]; int main() { scanf("%d%d", &N, &K); for(int i=1; i<=N; i++) scanf("%d%d%d", &A[i].X, &A[i].P, &A[i].S); if(N==1) return !printf("0\n"); ll ans=1e18; for(int i=1; i<N; i++) { vector<ll> V; int cnt=0; for(int j=1; j<=i; j++) V.push_back(A[j].X+A[j].P); for(int j=i+1; j<=N; j++) V.push_back(A[j].X-A[j].P), cnt++; sort(V.begin(), V.end()); ll k=V[cnt-1]; ll now=0; for(int j=1; j<=i; j++) now+=max(0ll, k-A[j].X-A[j].P); for(int j=i+1; j<=N; j++) now+=max(0ll, A[j].X-A[j].P-k); ans=min(ans, now); } printf("%lld\n", -ans); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |