結果

問題 No.1391 ±1 Abs Sum
ユーザー ocvret_ocvret_
提出日時 2021-02-13 17:21:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 1,474 ms
コンパイル使用メモリ 168,404 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 20:32:20
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 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 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 79 ms
5,376 KB
testcase_12 AC 60 ms
5,376 KB
testcase_13 AC 73 ms
5,376 KB
testcase_14 AC 48 ms
5,376 KB
testcase_15 AC 50 ms
5,376 KB
testcase_16 AC 60 ms
5,376 KB
testcase_17 AC 53 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 53 ms
5,376 KB
testcase_20 AC 80 ms
5,376 KB
testcase_21 AC 47 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
testcase_23 AC 57 ms
5,376 KB
testcase_24 AC 49 ms
5,376 KB
testcase_25 AC 53 ms
5,376 KB
testcase_26 AC 53 ms
5,376 KB
testcase_27 AC 36 ms
5,376 KB
testcase_28 AC 37 ms
5,376 KB
testcase_29 AC 49 ms
5,376 KB
testcase_30 AC 43 ms
5,376 KB
testcase_31 AC 79 ms
5,376 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 71 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 81 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
  k = n-k;
  ll r = n-k,x = k,l = 0;
  ll d = 0;
  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;
  r %= n;
  ll res = d;
  for(ll i = 1;i < n;i++){
    d -= (n-i-2*x)*(a[i]-a[i-1]);
    d += (i-2*(k-x))*(a[i]-a[i-1]);
    while(abs(a[i]-a[r]) <= abs(a[i]-a[l]) && x > 0){
      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;
}
0