結果

問題 No.822 Bitwise AND
ユーザー daut-dlangdaut-dlang
提出日時 2019-04-26 22:59:19
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 2,088 bytes
コンパイル時間 3,649 ms
コンパイル使用メモリ 94,464 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2023-09-04 00:52:25
合計ジャッジ時間 9,545 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 101 ms
4,328 KB
testcase_02 AC 413 ms
4,332 KB
testcase_03 AC 1 ms
4,328 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,328 KB
testcase_10 AC 1 ms
4,332 KB
testcase_11 AC 1 ms
4,332 KB
testcase_12 WA -
testcase_13 AC 13 ms
4,332 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 WA -
testcase_16 AC 206 ms
4,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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^^21)-1);
		long[] a = [0];
		foreach (i; 0..21)
		{
			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();
}
0