結果
問題 | No.1079 まお |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-06-12 23:05:08 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,341 bytes |
コンパイル時間 | 972 ms |
コンパイル使用メモリ | 130,916 KB |
実行使用メモリ | 49,628 KB |
最終ジャッジ日時 | 2024-06-22 07:22:19 |
合計ジャッジ時間 | 16,313 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 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 | AC | 405 ms
26,344 KB |
testcase_13 | AC | 482 ms
37,908 KB |
testcase_14 | AC | 596 ms
47,384 KB |
testcase_15 | AC | 657 ms
46,372 KB |
testcase_16 | AC | 749 ms
45,900 KB |
testcase_17 | WA | - |
testcase_18 | AC | 846 ms
42,708 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 840 ms
48,980 KB |
testcase_23 | AC | 841 ms
48,692 KB |
testcase_24 | AC | 853 ms
49,240 KB |
testcase_25 | AC | 857 ms
48,256 KB |
testcase_26 | AC | 856 ms
48,904 KB |
testcase_27 | AC | 250 ms
6,940 KB |
testcase_28 | AC | 733 ms
37,936 KB |
testcase_29 | AC | 838 ms
48,968 KB |
testcase_30 | AC | 825 ms
48,732 KB |
testcase_31 | AC | 325 ms
6,940 KB |
ソースコード
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); 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); } break; } } catch (EOFException e) { } }