結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | ok |
提出日時 | 2021-02-12 23:08:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,831 bytes |
コンパイル時間 | 868 ms |
コンパイル使用メモリ | 86,900 KB |
実行使用メモリ | 8,544 KB |
最終ジャッジ日時 | 2024-07-20 00:37:42 |
合計ジャッジ時間 | 2,913 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | RE | - |
ソースコード
#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]; } A.erase(unique(A.begin(), A.end()), A.end()); if(A.size() != N) exit(2); cout<<res<<endl; } signed main(){ cout<<fixed<<setprecision(10); test(); return 0; }