結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | carrot46 |
提出日時 | 2021-02-12 22:26:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,621 bytes |
コンパイル時間 | 1,700 ms |
コンパイル使用メモリ | 170,104 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 22:59:31 |
合計ジャッジ時間 | 3,576 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 28 ms
5,376 KB |
testcase_12 | AC | 22 ms
5,376 KB |
testcase_13 | AC | 26 ms
5,376 KB |
testcase_14 | AC | 18 ms
5,376 KB |
testcase_15 | AC | 18 ms
5,376 KB |
testcase_16 | AC | 23 ms
5,376 KB |
testcase_17 | AC | 21 ms
5,376 KB |
testcase_18 | AC | 28 ms
5,376 KB |
testcase_19 | AC | 19 ms
5,376 KB |
testcase_20 | AC | 27 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 29 ms
5,376 KB |
testcase_32 | AC | 15 ms
5,376 KB |
testcase_33 | AC | 17 ms
5,376 KB |
testcase_34 | AC | 25 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 28 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> //#include <chrono> //#pragma GCC optimize("Ofast") using namespace std; #define reps(i,s,n) for(int i = s; i < n; i++) #define rep(i,n) reps(i,0,n) #define Rreps(i,n,e) for(int i = n - 1; i >= e; --i) #define Rrep(i,n) Rreps(i,n,0) #define ALL(a) a.begin(), a.end() using ll = long long; using vec = vector<ll>; using mat = vector<vec>; ll N,M,H,W,Q,K,A,B; string S; using P = pair<ll, ll>; const ll INF = (1LL<<60); template<class T> bool chmin(T &a, const T b){ if(a > b) {a = b; return true;} else return false; } template<class T> bool chmax(T &a, const T b){ if(a < b) {a = b; return true;} else return false; } template<class T> void my_printv(std::vector<T> v,bool endline = true){ if(!v.empty()){ for(std::size_t i{}; i<v.size()-1; ++i) std::cout<<v[i]<<" "; std::cout<<v.back(); } if(endline) std::cout<<std::endl; } ll calc(vec &a){ ll temp = 0, res; reps(i, 1, K) temp += a[i] - a[0]; reps(i, K, N) temp -= a[i] - a[0]; res = temp; int l = 0; reps(i, 1, N){ temp -= (a[i] - a[i-1]) * (K + (l - i) * 2); temp += (a[i] - a[i-1]) * (N - K - l * 2); while(l < N - K && a[i] - a[l] > a[l + K] - a[i]) { temp -= a[i] * 2 - a[l] - a[l + K]; ++l; } //cout<<l<<' '<<temp<<endl; chmin(res, temp); } return res; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin>>N>>K; vec a(N); rep(i, N) cin>>a[i]; ll res = calc(a); reverse(ALL(a)); rep(i, N) a[i] = -a[i]; cout<<min(res, calc(a))<<endl; }