結果

問題 No.738 平らな農地
ユーザー te-shte-sh
提出日時 2018-10-10 15:54:49
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 2,009 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 115,608 KB
実行使用メモリ 12,892 KB
最終ジャッジ日時 2024-06-13 01:51:09
合計ジャッジ時間 6,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 RE -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 RE -
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 RE -
testcase_10 AC 1 ms
5,376 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 75 ms
8,360 KB
testcase_16 AC 88 ms
8,556 KB
testcase_17 AC 109 ms
8,552 KB
testcase_18 AC 80 ms
8,276 KB
testcase_19 AC 140 ms
8,608 KB
testcase_20 AC 74 ms
8,564 KB
testcase_21 AC 88 ms
8,748 KB
testcase_22 AC 80 ms
8,436 KB
testcase_23 AC 119 ms
8,456 KB
testcase_24 AC 89 ms
8,440 KB
testcase_25 RE -
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 RE -
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 2 ms
5,376 KB
testcase_43 RE -
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 85 ms
9,060 KB
testcase_46 AC 91 ms
8,588 KB
testcase_47 AC 80 ms
9,028 KB
testcase_48 AC 80 ms
8,736 KB
testcase_49 AC 80 ms
8,600 KB
testcase_50 AC 82 ms
9,156 KB
testcase_51 AC 77 ms
9,168 KB
testcase_52 AC 71 ms
8,600 KB
testcase_53 AC 76 ms
8,876 KB
testcase_54 AC 81 ms
9,036 KB
testcase_55 AC 87 ms
9,036 KB
testcase_56 AC 90 ms
9,152 KB
testcase_57 AC 84 ms
8,580 KB
testcase_58 AC 80 ms
9,008 KB
testcase_59 AC 92 ms
9,060 KB
testcase_60 AC 93 ms
9,180 KB
testcase_61 AC 88 ms
9,048 KB
testcase_62 AC 74 ms
8,708 KB
testcase_63 AC 89 ms
9,192 KB
testcase_64 AC 80 ms
9,044 KB
testcase_65 AC 102 ms
8,436 KB
testcase_66 AC 111 ms
8,468 KB
testcase_67 AC 69 ms
9,924 KB
testcase_68 AC 81 ms
10,096 KB
testcase_69 AC 117 ms
10,244 KB
testcase_70 AC 96 ms
10,412 KB
testcase_71 AC 19 ms
5,376 KB
testcase_72 AC 27 ms
5,376 KB
testcase_73 AC 25 ms
5,376 KB
testcase_74 AC 28 ms
5,376 KB
testcase_75 AC 121 ms
10,032 KB
testcase_76 AC 108 ms
10,212 KB
testcase_77 AC 130 ms
10,036 KB
testcase_78 AC 108 ms
10,400 KB
testcase_79 AC 105 ms
10,412 KB
testcase_80 AC 90 ms
10,100 KB
testcase_81 AC 90 ms
10,208 KB
testcase_82 AC 137 ms
10,528 KB
testcase_83 AC 25 ms
6,940 KB
testcase_84 AC 26 ms
6,940 KB
testcase_85 AC 176 ms
10,180 KB
testcase_86 AC 113 ms
12,892 KB
testcase_87 AC 63 ms
10,048 KB
testcase_88 AC 59 ms
9,740 KB
testcase_89 AC 1 ms
5,376 KB
testcase_90 RE -
testcase_91 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;

auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}
void readA(T)(size_t n,ref T[]t){t=new T[](n);auto r=rdsp;foreach(ref v;t)pick(r,v);}

void main()
{
  int n, k; readV(n, k);
  int[] a; readA(n, a);

  int[int] z;
  auto zn = 0, b = a.dup.sort().uniq.array;
  foreach (bi; b) z[bi] = zn++;
  auto c = a.map!(ai => z[ai]).array;

  auto fc = new FenwickTree!int(zn), fs = new FenwickTree!long(zn);
  foreach (i; 0..k) {
    fc[c[i]] += 1;
    fs[c[i]] += b[c[i]];
  }

  auto ans = 10L^^18;
  foreach (i; 0..n-k+1) {
    auto s = iota(0, zn).map!(j => fc[0..j]).assumeSorted;
    if (k%2 == 0) {
      auto j1 = s.lowerBound(k/2).length-1, j2 = s.lowerBound(k/2+1).length-1;
      ans = min(ans, (fs[j2..$]-b[j2].to!long*(fc[j2..$]-k/2))-(fs[0..j1+1]-b[j1].to!long*(fc[0..j1+1]-k/2)));
    } else {
      auto j = s.lowerBound(k/2+1).length-1;
      ans = min(ans, (fs[j..$]-b[j].to!long*(fc[j..$]-k/2))-(fs[0..j+1]-b[j].to!long*(fc[0..j+1]-k/2)));
    }

    fc[c[i]] -= 1;
    fs[c[i]] -= b[c[i]];
    fc[c[i+k]] += 1;
    fs[c[i+k]] += b[c[i+k]];
  }

  writeln(ans);
}

class FenwickTree(T)
{
  const size_t n;
  T[] buf;

  this(size_t n)
  {
    this.n = n;
    this.buf = new T[](n+1);
  }

  void opIndexOpAssign(string op)(T val, size_t i) if (op == "+" || op == "-")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i] " ~ op ~ "= val;");
  }

  void opIndexUnary(string op)(size_t i) if (op == "++" || op == "--")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i]" ~ op ~ ";");
  }

  pure T opSlice(size_t r, size_t l) { return get(l) - get(r); }
  pure T opIndex(size_t i) { return opSlice(i, i+1); }
  pure size_t opDollar() { return n; }

private:

  pure T get(size_t i)
  {
    auto s = T(0);
    for (; i > 0; i -= i & -i) s += buf[i];
    return s;
  }
}
0