# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
275633 | 2020-08-20T06:49:47 Z | 문홍윤(#5111) | Radio (Balkan15_RADIO) | C++17 | 110 ms | 10204 KB |
#include <bits/stdc++.h> #define eb emplace_back #define mp make_pair #define F first #define S second #define all(x) x.begin(), x.end() #define svec(x) sort(x.begin(), x.end()) #define press(x) x.erase(unique(x.begin(), x.end()), x.end()) using namespace std; typedef long long LL; typedef pair<int, int> pii; typedef pair<LL, LL> pll; typedef pair<int, LL> pil; typedef pair<LL, int> pli; const LL llinf=2e18; const int inf=1e9; int n, k; LL x[100010], p[100010], s[100010], ans[100010], anss=llinf; vector<pli> use; vector<LL> vc; int main(){ scanf("%d %d", &n, &k); for(int i=1; i<=n; i++){ scanf("%lld %lld %lld", &x[i], &p[i], &s[i]); use.eb(x[i]-p[i], -1); use.eb(x[i]+p[i], 1); vc.eb(x[i]-p[i]); vc.eb(x[i]+p[i]); } svec(use); svec(vc); press(vc); LL num=0, sum=0; int pv=0; for(int i=0; i<vc.size(); i++){ for(; pv<use.size(); pv++){ if(use[pv].F>vc[i])break; if(use[pv].S==1)num++, sum+=use[pv].F; } ans[i]+=num*vc[i]-sum; } num=sum=0; pv=use.size()-1; for(int i=vc.size()-1; i>=0; i--){ for(; pv>=0; pv--){ if(use[pv].F<vc[i])break; if(use[pv].S==-1)num++, sum+=use[pv].F; } ans[i]+=sum-num*vc[i]; } for(int i=0; i<vc.size(); i++)anss=min(anss, ans[i]); printf("%lld", anss); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 2 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 2 ms | 384 KB | Output is correct |
6 | Correct | 7 ms | 892 KB | Output is correct |
7 | Correct | 16 ms | 2420 KB | Output is correct |
8 | Correct | 37 ms | 5480 KB | Output is correct |
9 | Correct | 77 ms | 8796 KB | Output is correct |
10 | Correct | 67 ms | 10204 KB | Output is correct |
11 | Correct | 110 ms | 10188 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |