結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | ocvret_ |
提出日時 | 2021-02-12 23:19:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 809 bytes |
コンパイル時間 | 1,806 ms |
コンパイル使用メモリ | 168,472 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 00:56:47 |
合計ジャッジ時間 | 4,792 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 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 53 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 70 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 84 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
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 | 90 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | WA | - |
ソースコード
#include<bits/stdc++.h> // #include<atcoder/all> using namespace std; // using namespace atcoder; using ll = long long; using ull = unsigned long long; using P = pair<int,int>; #define rep(i,n) for(ll i = 0;i < (ll)n;i++) #define ALL(x) (x).begin(),(x).end() #define MOD 1000000007 int main(){ ll n,k; cin >> n >> k; ll r = k,x = n-k,l = 0; ll d = 0; ll res = 1ll << 60; vector<ll> a(n); rep(i,n)cin >> a[i],d += a[i]-a[0]; for(ll i = r;i < n;i++)d -= (a[i]-a[0])*2; res = d; for(ll i = 1;i < n;i++){ d += (i-2*(k-x))*(a[i]-a[i-1]); d -= (n-i-1-2*x)*(a[i]-a[i-1]); while(abs(a[i]-a[r]) < abs(a[i]-a[l])){ d += 2*(abs(a[i]-a[l])-abs(a[i]-a[r])); l++;r++; l %= n;r %= n; x--; } res = min(res,d); } cout << res << "\n"; return 0; }