結果
問題 | No.1240 Or Sum of Xor Pair |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-09-25 21:33:00 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,593 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 125,972 KB |
実行使用メモリ | 19,976 KB |
最終ジャッジ日時 | 2024-06-22 09:10:08 |
合計ジャッジ時間 | 4,406 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
11,512 KB |
testcase_01 | AC | 36 ms
11,128 KB |
testcase_02 | AC | 35 ms
12,448 KB |
testcase_03 | AC | 37 ms
13,652 KB |
testcase_04 | AC | 37 ms
14,304 KB |
testcase_05 | AC | 37 ms
13,544 KB |
testcase_06 | AC | 37 ms
14,380 KB |
testcase_07 | AC | 36 ms
12,620 KB |
testcase_08 | AC | 36 ms
12,408 KB |
testcase_09 | AC | 37 ms
14,068 KB |
testcase_10 | AC | 37 ms
13,504 KB |
testcase_11 | AC | 39 ms
13,924 KB |
testcase_12 | AC | 41 ms
14,428 KB |
testcase_13 | AC | 40 ms
13,448 KB |
testcase_14 | AC | 41 ms
13,572 KB |
testcase_15 | AC | 64 ms
19,352 KB |
testcase_16 | AC | 63 ms
19,640 KB |
testcase_17 | AC | 65 ms
19,556 KB |
testcase_18 | AC | 64 ms
19,860 KB |
testcase_19 | AC | 65 ms
19,316 KB |
testcase_20 | AC | 64 ms
19,492 KB |
testcase_21 | AC | 65 ms
19,864 KB |
testcase_22 | AC | 65 ms
19,764 KB |
testcase_23 | AC | 64 ms
19,976 KB |
testcase_24 | AC | 63 ms
19,680 KB |
testcase_25 | AC | 64 ms
19,512 KB |
testcase_26 | AC | 66 ms
19,508 KB |
testcase_27 | AC | 35 ms
11,968 KB |
testcase_28 | AC | 36 ms
12,068 KB |
testcase_29 | WA | - |
testcase_30 | AC | 47 ms
14,564 KB |
testcase_31 | AC | 46 ms
13,980 KB |
testcase_32 | AC | 62 ms
18,224 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)); } enum E = 18; void hadamard(long[] fs) { foreach (e; 0 .. E) { foreach (p; 0 .. 1 << E) { if (!(p & 1 << e)) { const tmp = fs[p] - fs[p | 1 << e]; fs[p] += fs[p | 1 << e]; fs[p | 1 << e] = tmp; } } } } void main() { try { for (; ; ) { const N = readInt(); const X = readInt(); auto A = new int[N]; foreach (i; 0 .. N) { A[i] = readInt(); } auto fs0 = new long[1 << E]; auto fs1 = new long[1 << E]; foreach (i; 0 .. N) { fs0[A[i]] += 1; fs1[A[i]] += A[i]; } fs0.hadamard; fs1.hadamard; auto gs0 = new long[1 << E]; auto gs1 = new long[1 << E]; foreach (h; 0 .. 1 << E) { gs0[h] = fs0[h]^^2; gs1[h] = fs0[h] * fs1[h]; } gs0.hadamard; gs1.hadamard; gs0[] /= 1 << E; gs1[] /= 1 << E; debug { writeln("gs0 = ", gs0[0 .. 1 << 4]); writeln("gs1 = ", gs1[0 .. 1 << 4]); } long ans; // or = (xor + sum) / 2 foreach (h; 0 .. 1 << E) { if (h < X) { ans += gs0[h] * h; ans += gs1[h]; ans += gs1[h]; } } ans /= 2; foreach (i; 0 .. N) { if ((A[i] ^ A[i]) < X) { ans -= A[i] | A[i]; } } ans /= 2; writeln(ans); } } catch (EOFException e) { } }