結果
問題 | No.332 数列をプレゼントに |
ユーザー | te-sh |
提出日時 | 2017-07-05 12:15:30 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,135 bytes |
コンパイル時間 | 1,149 ms |
コンパイル使用メモリ | 116,788 KB |
実行使用メモリ | 14,808 KB |
最終ジャッジ日時 | 2024-06-12 20:41:24 |
合計ジャッジ時間 | 8,352 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | RE | - |
testcase_18 | AC | 8 ms
8,556 KB |
testcase_19 | RE | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | RE | - |
testcase_24 | AC | 4 ms
6,940 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 13 ms
14,808 KB |
testcase_36 | AC | 1 ms
6,944 KB |
testcase_37 | AC | 1 ms
6,940 KB |
testcase_38 | AC | 1 ms
6,940 KB |
testcase_39 | AC | 1 ms
6,940 KB |
testcase_40 | AC | 1 ms
6,940 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 1 ms
6,944 KB |
testcase_43 | AC | 1 ms
6,944 KB |
testcase_44 | AC | 1 ms
6,944 KB |
testcase_45 | AC | 5 ms
6,940 KB |
testcase_46 | AC | 1 ms
6,940 KB |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.bitmanip; // BitArray const th = 10 ^^ 5; void main() { auto rd = readln.split, n = rd[0].to!size_t, x = rd[1].to!long; auto a = readln.split.to!(long[]); auto bt = a.enumerate.filter!((e) => e[1] < th); auto b = bt.map!"a[1]".array, bi = bt.map!"a[0]".array, nb = b.length, tb = b.sum; auto ct = a.enumerate.filter!((e) => e[1] >= th); auto c = ct.map!"a[1]".array, ci = ct.map!"a[0]".array, nc = c.length; auto dpb = new BitArray[](nb+1); dpb[0].length = tb+1; dpb[0][0] = true; foreach (i; 0..nb) { dpb[i+1] = dpb[i].dup; dpb[i+1] <<= b[i]; dpb[i+1] |= dpb[i]; } auto calcDPrev(long x) { auto r = BitArray(); r.length = nb; foreach_reverse (i; 0..nb) if (x >= b[i] && dpb[i][x-b[i]]) { r[i] = true; x -= b[i]; } return r; } if (c.empty) { if (dpb[$-1][x]) { auto r = calcDPrev(x); foreach (i; 0..n) write(r[i] ? 'o' : 'x'); writeln; } else { writeln("No"); } } else { auto dpc = new long[](1 << nc); foreach (i; 1..(1 << nc)) { auto j = i.bsf; dpc[i] = dpc[i.bitComp(j)] + c[j]; auto s = x - dpc[i]; if (s <= tb && dpb[$-1][s]) { auto r = calcDPrev(s); foreach (k; 0..n) { auto ib = bi.countUntil(k); if (ib >= 0) { write(r[ib] ? 'o' : 'x'); } else { auto ic = ci.countUntil(k); write(i.bitTest(ic) ? 'o' : 'x'); } } writeln; return; } } writeln("No"); } } pragma(inline) { pure bool bitTest(T)(T n, size_t i) { return (n & (T(1) << i)) != 0; } pure T bitSet(T)(T n, size_t i) { return n | (T(1) << i); } pure T bitReset(T)(T n, size_t i) { return n & ~(T(1) << i); } pure T bitComp(T)(T n, size_t i) { return n ^ (T(1) << i); } import core.bitop; pure int bsf(T)(T n) { return core.bitop.bsf(ulong(n)); } pure int bsr(T)(T n) { return core.bitop.bsr(ulong(n)); } pure int popcnt(T)(T n) { return core.bitop.popcnt(ulong(n)); } }