結果

問題 No.1079 まお
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-06-12 23:05:46
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 4,375 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 118,136 KB
実行使用メモリ 50,588 KB
最終ジャッジ日時 2023-09-04 08:08:38
合計ジャッジ時間 19,334 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
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 AC 467 ms
29,000 KB
testcase_13 AC 581 ms
38,668 KB
testcase_14 AC 685 ms
49,916 KB
testcase_15 AC 771 ms
48,572 KB
testcase_16 AC 859 ms
49,028 KB
testcase_17 WA -
testcase_18 AC 966 ms
50,372 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 979 ms
49,148 KB
testcase_23 AC 975 ms
49,940 KB
testcase_24 AC 979 ms
49,340 KB
testcase_25 AC 974 ms
48,816 KB
testcase_26 AC 974 ms
50,496 KB
testcase_27 AC 285 ms
6,720 KB
testcase_28 AC 842 ms
38,332 KB
testcase_29 AC 961 ms
50,588 KB
testcase_30 AC 977 ms
49,616 KB
testcase_31 AC 369 ms
6,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }




void main() {
  try {
    for (; ; ) {
      const N = readInt();
      const K = readLong();
      auto A = new long[N];
      foreach (i; 0 .. N) {
        A[i] = readLong();
      }
      
      long ans;
      foreach (i; 0 .. N) {
        if (A[i] + A[i] == K) {
          ans += 1;
        }
      }
      
      void solve(int l, int r) {
        if (r - l <= 1) {
          return;
        }
        const mid = (l + r) / 2;
        solve(l, mid);
        solve(mid, r);
        alias Entry = Tuple!(long, "val", int, "pos");
        Entry[] ps, qs;
        {
          long mn = long.max;
          int cnt;
          foreach_reverse (i; l .. mid) {
            if (chmin(mn, A[i])) cnt = 0;
            if (mn == A[i]) ++cnt;
            if (cnt == 1) ps ~= Entry(mn, i);
          }
        }
        {
          long mn = long.max;
          int cnt;
          foreach (i; mid .. r) {
            if (chmin(mn, A[i])) cnt = 0;
            if (mn == A[i]) ++cnt;
            if (cnt == 1) qs ~= Entry(mn, i);
          }
        }
        long[] vals;
        foreach (ref p; ps) vals ~= p.val;
        foreach (ref q; qs) vals ~= q.val;
        vals = vals.sort.uniq.array;
        debug {
          writeln("solve ", l, " ", mid, " ", r);
          writeln("  ps = ", ps);
          writeln("  qs = ", qs);
        }
        const psLen = cast(int)(ps.length);
        const qsLen = cast(int)(qs.length);
        int kp, kq;
        long[long] s0P, s1P, s0Q, s1Q;
        foreach_reverse (val; vals) {
          int lp, lq;
          for (lp = kp; lp < psLen && ps[lp].val == val; ++lp) {}
          for (lq = kq; lq < qsLen && qs[lq].val == val; ++lq) {}
          debug {
            writeln("  ", val, " ", [kp, lp], " ", [kq, lq]);
          }
          foreach (m; kp .. lp) {
            const i = ps[m].pos;
            if ((K - A[i]) in s0Q) {
              debug {
                writeln("    P ", ps[m], " ", (s1Q[K - A[i]] - s0Q[K - A[i]] * (i - 1)));
              }
              ans += (s1Q[K - A[i]] - s0Q[K - A[i]] * (i - 1));
            }
          }
          foreach (m; kq .. lq) {
            const i = qs[m].pos;
            if ((K - A[i]) in s0P) {
              debug {
                writeln("    Q ", qs[m], " ", (s0P[K - A[i]] * (i + 1) - s1P[K - A[i]]));
              }
              ans += (s0P[K - A[i]] * (i + 1) - s1P[K - A[i]]);
            }
          }
          foreach (m; kp .. lp) {
            const i = ps[m].pos;
            s0P[A[i]] += 1;
            s1P[A[i]] += i;
          }
          foreach (m; kq .. lq) {
            const i = qs[m].pos;
            s0Q[A[i]] += 1;
            s1Q[A[i]] += i;
          }
          kp = lp;
          kq = lq;
        }
      }
      
      solve(0, N);
      writeln(ans);
      
if(N<=100){//      debug {
        long brt;
        foreach (i; 0 .. N) foreach (j; i .. N) {
          if (A[i] + A[j] == K) {
            auto asBrt = A[i .. j + 1].dup.sort;
            if (asBrt.length == 1 || asBrt[0] < asBrt[1]) {
              brt += (j - i + 1);
            }
          }
        }
        writeln("brt = ", brt);
        assert(brt == ans);
      }
    }
  } catch (EOFException e) {
  }
}
0