結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | ok |
提出日時 | 2021-02-12 22:50:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,862 bytes |
コンパイル時間 | 885 ms |
コンパイル使用メモリ | 85,768 KB |
実行使用メモリ | 9,888 KB |
最終ジャッジ日時 | 2024-07-19 23:54:12 |
合計ジャッジ時間 | 4,806 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,888 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
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<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> #include<cassert> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; struct fast_io { fast_io(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); }; } fio; int f(const vector<int> &A, const vector<int> &B, int x){ int sum = 0; int N = A.size(); for(int i = 0; i < N; i++){ sum += B[i] * abs(A[i] - x); } return sum; } int minf(const vector<int> &A, const vector<int> &B, int K){ int sum = 0, res = INF; int N = A.size(); int a = 0, b = 0; int ca = 0, cb = 0; int sa = 0, sb = 0; for(int i = 0; i < N; i++){ if(B[i] > 0) { sa += A[i]; } else { sb += A[i]; } } for(int i = 0; i < N; i++){ sum = 0; sum += (sa - a) - A[i] * (K - ca); sum -= (sb - b) - A[i] * (N - K - cb); sum += A[i] * ca - a; sum -= A[i] * cb - b; if(B[i] > 0) { ca++; a += A[i]; } else { cb++; b += A[i]; } // assert(f(A, B, A[i]) == sum); res = min(res, sum); } return res; } void test(){ int N, K; int res = INF; vector<int> A, B; cin>>N>>K; A.resize(N); B.resize(K, 1); for(int i = K; i < N; i++){ B.push_back(-1); } for(int i = 0; i < N; i++){ cin>>A[i]; } // res = minf(A, B, K); for(int i = A[0]; i <= A[N-1]; i++){ res = min(res, f(A, B, i)); } cout<<res<<endl; } signed main(){ cout<<fixed<<setprecision(10); test(); return 0; }