結果

問題 No.738 平らな農地
ユーザー penguinshunyapenguinshunya
提出日時 2018-10-29 08:02:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 925 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 206,828 KB
実行使用メモリ 17,992 KB
最終ジャッジ日時 2024-11-19 07:35:17
合計ジャッジ時間 146,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
11,084 KB
testcase_02 AC 1 ms
13,640 KB
testcase_03 AC 2 ms
10,964 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 8 ms
10,912 KB
testcase_06 AC 8 ms
13,640 KB
testcase_07 AC 101 ms
10,916 KB
testcase_08 AC 12 ms
11,100 KB
testcase_09 AC 3 ms
10,964 KB
testcase_10 AC 2 ms
10,788 KB
testcase_11 AC 17 ms
10,912 KB
testcase_12 AC 6 ms
10,916 KB
testcase_13 AC 12 ms
10,916 KB
testcase_14 AC 3 ms
13,640 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 11 ms
11,228 KB
testcase_26 AC 12 ms
13,636 KB
testcase_27 AC 12 ms
11,088 KB
testcase_28 AC 11 ms
13,636 KB
testcase_29 AC 11 ms
11,176 KB
testcase_30 AC 11 ms
13,640 KB
testcase_31 AC 11 ms
11,168 KB
testcase_32 AC 12 ms
13,636 KB
testcase_33 AC 10 ms
11,044 KB
testcase_34 AC 11 ms
13,632 KB
testcase_35 AC 12 ms
11,168 KB
testcase_36 AC 11 ms
13,632 KB
testcase_37 AC 11 ms
11,044 KB
testcase_38 AC 11 ms
11,044 KB
testcase_39 AC 12 ms
11,040 KB
testcase_40 AC 12 ms
11,172 KB
testcase_41 AC 11 ms
11,172 KB
testcase_42 AC 11 ms
13,636 KB
testcase_43 AC 11 ms
10,948 KB
testcase_44 AC 12 ms
13,636 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 13 ms
11,168 KB
testcase_66 AC 13 ms
10,912 KB
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 AC 1,444 ms
10,916 KB
testcase_78 AC 1,591 ms
10,916 KB
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 AC 15 ms
6,820 KB
testcase_86 AC 15 ms
6,816 KB
testcase_87 AC 18 ms
6,816 KB
testcase_88 AC 17 ms
6,820 KB
testcase_89 AC 2 ms
6,816 KB
testcase_90 AC 2 ms
6,816 KB
testcase_91 AC 2 ms
17,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repi(i, a, b) for (int i = (a); i < (b); i++)
#define all(a) (a).begin(), (a).end()

using namespace std;
using i32 = int;
using i64 = long long;
using f64 = double;
using vi32 = vector<i32>;
using vvi32 = vector<vi32>;
using vi64 = vector<i64>;
using vvi64 = vector<vi64>;

template<typename T> inline bool amin(T &x, T y) { if (y < x) { x = y; return true; } return false; }
template<typename T> inline bool amax(T &x, T y) { if (x < y) { x = y; return true; } return false; }

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, k;
  cin >> n >> k;
  vi64 a(n);
  rep(i, n) cin >> a[i];
  i64 ans = 1e18;
  rep(i, n - k + 1) {
    vi64 v(k);
    rep(j, k) v[j] = a[j + i];
    sort(all(v));
    i64 c = v[k / 2];
    i64 sum = 0;
    rep(j, k) sum += abs(v[j] - c);
    amin(ans, sum);
  }
  cout << ans << endl;
  return 0;
}
0