Submission #225065

#TimeUsernameProblemLanguageResultExecution timeMemory
225065NONAMESimfonija (COCI19_simfonija)C++17
110 / 110
45 ms3456 KiB
#include <bits/stdc++.h> #include <time.h> //#include <random> #define sz(x) int(x.size()) #define in(x) freopen(x, "r", stdin) #define out(x) freopen(x, "w", stdout) #define N 100500 #define oo ll(1e16) #define pii pair <int, int> #define pll pair <ll, ll> #define ft first #define sd second #define pb push_back #define ppb pop_back #define mp make_pair #define el '\n' #define elf endl #define base ll(1e9 + 7) #define re return #define nins 4294967295 using namespace std; typedef long long ll; typedef long double ld; //mt19937 rnd(0); ll n, k, a[N], b[N], ans, nw[N], pf[N]; vector <pair <ll, int> > vec; void solve() { cin >> n >> k; if (k >= n - 1) { cout << 0; return; } for (int i = 0; i < n; i++) cin >> a[i]; for (int i = 0; i < n; i++) cin >> b[i]; for (int i = 0; i < n; i++) nw[i] = a[i] - b[i]; sort(nw, nw + n); for (int i = 0; i < n; i++) pf[i] = (i - 1 < 0 ? 0 : pf[i - 1]) + nw[i]; ans = oo; int i = -1; int j = n - k; while (i + 1 <= k) { int l = 0, r = n - 1; if (i != -1) l = i + 1; if (j != n) r = j - 1; ll cur = 0; int md = (l + r) >> 1; cur = nw[md] * (md - l + 1) - (pf[md] - (l - 1 < 0 ? 0 : pf[l - 1])) + (pf[r] - pf[md]) - nw[md] * (r - md); ans = min(ans, cur); i++; j++; } cout << ans; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #ifdef _LOCAL in("input.txt"); int t = 1; // cin >> t; for (int i = 1; i <= t; i++) { cout << "Test #" << i << elf; clock_t start_time = clock(); solve(); cerr.precision(4); cerr << fixed; cerr << elf; cerr << "Time :: " << ld(clock() - start_time) / CLOCKS_PER_SEC << elf; cout << elf; } #else int t = 1; // cin >> t; while (t--) { solve(); cout << el; } #endif }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...