結果
問題 | No.284 門松と魔法(2) |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-03-27 12:34:05 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,374 bytes |
コンパイル時間 | 1,674 ms |
コンパイル使用メモリ | 165,380 KB |
実行使用メモリ | 121,584 KB |
最終ジャッジ日時 | 2024-06-22 05:48:34 |
合計ジャッジ時間 | 5,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | AC | 554 ms
121,368 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 652 ms
121,584 KB |
testcase_33 | AC | 356 ms
115,604 KB |
testcase_34 | AC | 379 ms
116,276 KB |
testcase_35 | AC | 1 ms
6,940 KB |
testcase_36 | AC | 1 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
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)); } class Info { int[2] val, bef, pos; this() { val[] = 0; bef[] = -1; pos[] = -1; } override string toString() const { return format("(%s,%s,%s; %s,%s,%s)", val[0], bef[0], pos[0], val[1], bef[1], pos[1]); } } Info mul(const(Info) p, const(Info) q) { Info ret = new Info(); int s = 0, t = 0; if (p.val[s] > q.val[t]) { ret.val[0] = p.val[s]; ret.bef[0] = p.bef[s]; ret.pos[0] = p.pos[s]; ++s; } else { ret.val[0] = q.val[t]; ret.bef[0] = q.bef[t]; ret.pos[0] = q.pos[t]; ++t; } for (; s < 2 || t < 2; ) { if (s < 2 && (t == 2 || p.val[s] > q.val[t])) { if (ret.bef[0] != p.bef[s]) { ret.val[1] = p.val[s]; ret.bef[1] = p.bef[s]; ret.pos[1] = p.pos[s]; break; } ++s; } else { if (ret.bef[0] != q.bef[t]) { ret.val[1] = q.val[t]; ret.bef[1] = q.bef[t]; ret.pos[1] = q.pos[t]; break; } ++t; } } return ret; } int segN; void update(Info[] seg, int a, Info val) { a += segN; seg[a] = mul(seg[a], val); for (; a >>= 1; ) { seg[a] = mul(seg[a << 1], seg[a << 1 | 1]); } } alias Result = Tuple!(int, "val", int, "pos"); Result rangeMax(Info[] seg, int a, int b, int key) { Result ret = Result(0, -1); void check(int c) { const s = (seg[c].bef[1] != key) ? 0 : 1; chmax(ret, Result(seg[c].val[s], seg[c].pos[s])); } for (a += segN, b += segN; a < b; a >>= 1, b >>= 1) { if (a & 1) check(a++); if (b & 1) check(--b); } return ret; } void main() { try { for (; ; ) { const N = readInt(); auto A = new int[N]; foreach (i; 0 .. N) { A[i] = readInt(); } auto as = A.dup.sort.uniq.array; const asLen = cast(int)(as.length); for (segN = 1; segN < asLen; segN <<= 1) {} auto segU = new Info[segN << 1]; auto segD = new Info[segN << 1]; segU[] = new Info(); segD[] = new Info(); int ans; foreach (i; 0 .. N) { const pos = as.lowerBound(A[i]); Info dpU = new Info(); const resD0 = segD.rangeMax(0, pos, pos); dpU.val[0] = resD0.val + 1; dpU.bef[0] = resD0.pos; dpU.pos[0] = pos; if (resD0.pos != -1) { const resD1 = min(segD.rangeMax(0, resD0.pos, pos), segD.rangeMax(resD0.pos + 1, pos, pos)); dpU.val[1] = resD1.val + 1; dpU.bef[1] = resD1.pos; dpU.pos[1] = pos; } Info dpD = new Info(); const resU0 = segU.rangeMax(pos + 1, asLen, pos); dpD.val[0] = resU0.val + 1; dpD.bef[0] = resU0.pos; dpD.pos[0] = pos; if (resU0.pos != -1) { const resU1 = min(segU.rangeMax(pos + 1, resU0.pos, pos), segU.rangeMax(resU0.pos + 1, asLen, pos)); dpD.val[1] = resU1.val + 1; dpD.bef[1] = resU1.pos; dpD.pos[1] = pos; } debug { writeln(i, ": ", dpU, " ", dpD); } segU.update(pos, dpU); segD.update(pos, dpD); chmax(ans, dpU.val[0]); chmax(ans, dpD.val[0]); } writeln((ans < 3) ? 0 : ans); } } catch (EOFException e) { } }