結果
問題 | No.822 Bitwise AND |
ユーザー | daut-dlang |
提出日時 | 2019-04-26 22:58:47 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,088 bytes |
コンパイル時間 | 563 ms |
コンパイル使用メモリ | 108,720 KB |
実行使用メモリ | 16,064 KB |
最終ジャッジ日時 | 2024-06-22 01:00:12 |
合計ジャッジ時間 | 6,889 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import std.stdio, std.conv, std.functional, std.string; import std.algorithm, std.array, std.container, std.range, std.typecons; import std.numeric, std.math, std.random; import core.bitop; string FMT_F = "%.10f"; static string[] s_rd; T RD(T = long)() { while(!s_rd.length) s_rd = readln.chomp.split; string res = s_rd[0]; s_rd.popFront; return res.to!T; } string RDR()() { return readln.chomp; } T[] ARR(T = long)(in string str, T fix = 0) { auto r = str.split.to!(T[]); r[] += fix; return r; } size_t[] MAKE_IDX(alias less = "a < b", Range)(Range range) { auto idx = new size_t[](range.length); makeIndex!(less)(range, idx); return idx;} size_t MIN_POS(alias less = "a < b", Range)(Range range) { auto r = minPos!(less)(range); return range.length - r.length; } bool inside(T)(T x, T b, T e) { return x >= b && x < e; } bool minimize(T)(ref T x, T y) { if (x > y) { x = y; return true; } else { return false; } } bool maximize(T)(ref T x, T y) { if (x < y) { x = y; return true; } else { return false; } } long mod = 10^^9 + 7; void moda(ref long x, long y) { x = (x + y) % mod; } void mods(ref long x, long y) { x = ((x + mod) - (y % mod)) % mod; } void modm(ref long x, long y) { x = (x * y) % mod; } void main() { auto N = RD; auto K = RD; if (N < K) { writeln("INF"); } else { auto bits = N ^ ((2^^25)-1); long[] a = [0]; foreach (i; 0..25) { auto bit = 1LU << i; if (bit & bits) { a ~= bit; } } debug writeln(a); bool[long] cnt; foreach (pos; 0..a.length) { foreach_reverse (i; 0..2^^(pos+1)) { long x; foreach (j; 0..pos+1) { auto bit = 1LU << j; if ((bit & i) == 0) continue; x += a[j]; } if (x < a[pos] - K) break; foreach (j; 2^^(pos+1)..2^^a.length) { long y; foreach (k; pos+1..a.length) { auto bit = 1LU << k; if ((bit & j) == 0) continue; y += a[k]; } if (y - x > K) break; cnt[(y<<30)+x] = true; debug writeln(x, ":", y); } } } writeln(cnt.keys.length + 1); } stdout.flush(); debug readln(); }