結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | どらら |
提出日時 | 2021-02-12 23:08:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,121 bytes |
コンパイル時間 | 2,058 ms |
コンパイル使用メモリ | 174,596 KB |
実行使用メモリ | 14,008 KB |
最終ジャッジ日時 | 2024-07-20 00:39:36 |
合計ジャッジ時間 | 18,697 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1,441 ms
7,648 KB |
testcase_12 | AC | 1,478 ms
7,192 KB |
testcase_13 | AC | 1,431 ms
7,452 KB |
testcase_14 | AC | 553 ms
5,512 KB |
testcase_15 | AC | 588 ms
5,788 KB |
testcase_16 | AC | 841 ms
7,064 KB |
testcase_17 | AC | 750 ms
6,864 KB |
testcase_18 | AC | 975 ms
7,432 KB |
testcase_19 | AC | 1,469 ms
6,864 KB |
testcase_20 | AC | 1,131 ms
7,488 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; ll f(ll x, const vector<int>& v, int K){ vector<ll> ret; rep(i,v.size()){ ret.push_back(abs(v[i]-x)); } sort(ALLOF(ret)); ll sum = 0; rep(i,v.size()){ if(i<K) sum += ret[i]; else sum += -ret[i]; } return sum; } int main(){ int N, K; cin >> N >> K; vector<int> v(N); rep(i,N) cin >> v[i]; ll ret = f(v[N/2],v,K); ret = min(ret, f(v[0],v,K)); ret = min(ret, f(v[N-1],v,K)); { ll l = v[0], r = v[N/2]; rep(i,50){ if(f((l+l+r)/3,v,K)<f((l+r+r)/3,v,K)) r = (l+r+r)/3; else l = (l+l+r)/3; } ret = min(ret, f((l+r)/2,v,K)); } { ll l = v[N/2], r = v[N-1]; rep(i,50){ if(f((l+l+r)/3,v,K)<f((l+r+r)/3,v,K)) r = (l+r+r)/3; else l = (l+l+r)/3; } ret = min(ret, f((l+r)/2,v,K)); } cout << ret << endl; return 0; }