# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100253 | 2019-03-10T06:37:26 Z | pzdba | Simfonija (COCI19_simfonija) | C++14 | 156 ms | 2040 KB |
#include <bits/stdc++.h> using namespace std; long long oo = 1e18; int n, k; int a[100001], b[100001], c[100001], d[100001]; long long solve(int x){ for(int i=1;i<=n;i++) d[i] = c[i]+x; int l = 1, r = n, cnt = 0; while(cnt < k){ cnt++; if(abs(d[l]) > abs(d[r])) d[l] = 0, l++; else d[r] = 0, r--; } long long ans = 0; for(int i=1;i<=n;i++) ans += abs(d[i]); return ans; } int main(){ scanf("%d%d", &n, &k); for(int i=1;i<=n;i++) scanf("%d", &a[i]); for(int i=1;i<=n;i++) scanf("%d", &b[i]); for(int i=1;i<=n;i++) c[i] = a[i]-b[i]; sort(c+1, c+1+n); int lo = -1000000, hi = 1000000; long long ans = oo; for(int i=0;i<100;i++){ int mid1 = lo + (hi-lo)/3; int mid2 = hi - (hi-lo)/3; long long result1 = solve(mid1); long long result2 = solve(mid2); if(result1 < result2){ ans = min(ans, result1); hi = mid2; } else{ ans = min(ans, result2); lo = mid1; } } printf("%lld\n", ans); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 2 ms | 384 KB | Output is correct |
3 | Correct | 3 ms | 256 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 88 ms | 1912 KB | Output is correct |
2 | Correct | 80 ms | 1912 KB | Output is correct |
3 | Correct | 98 ms | 1912 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 75 ms | 1916 KB | Output is correct |
2 | Correct | 84 ms | 2040 KB | Output is correct |
3 | Correct | 61 ms | 1912 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 71 ms | 1956 KB | Output is correct |
2 | Correct | 92 ms | 1896 KB | Output is correct |
3 | Correct | 62 ms | 2040 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 87 ms | 1920 KB | Output is correct |
2 | Correct | 100 ms | 1924 KB | Output is correct |
3 | Correct | 98 ms | 1912 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 80 ms | 1912 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 97 ms | 1920 KB | Output is correct |
2 | Incorrect | 105 ms | 1920 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 135 ms | 1952 KB | Output is correct |
2 | Correct | 117 ms | 1912 KB | Output is correct |
3 | Correct | 114 ms | 1912 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 92 ms | 1900 KB | Output is correct |
2 | Incorrect | 156 ms | 1912 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 81 ms | 1888 KB | Output is correct |
2 | Correct | 80 ms | 1916 KB | Output is correct |
3 | Correct | 119 ms | 1912 KB | Output is correct |