結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Min_25Min_25
提出日時 2015-05-09 11:11:05
言語 Python2
(2.7.18)
結果
AC  
実行時間 648 ms / 7,000 ms
コード長 1,712 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 6,712 KB
実行使用メモリ 26,596 KB
最終ジャッジ日時 2023-09-19 09:26:01
合計ジャッジ時間 9,884 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,952 KB
testcase_01 AC 12 ms
5,888 KB
testcase_02 AC 11 ms
5,944 KB
testcase_03 AC 12 ms
6,008 KB
testcase_04 AC 12 ms
5,924 KB
testcase_05 AC 12 ms
5,844 KB
testcase_06 AC 17 ms
6,416 KB
testcase_07 AC 18 ms
6,244 KB
testcase_08 AC 18 ms
6,328 KB
testcase_09 AC 17 ms
6,460 KB
testcase_10 AC 12 ms
6,004 KB
testcase_11 AC 12 ms
6,032 KB
testcase_12 AC 19 ms
6,272 KB
testcase_13 AC 18 ms
6,328 KB
testcase_14 AC 18 ms
6,300 KB
testcase_15 AC 17 ms
6,260 KB
testcase_16 AC 17 ms
6,328 KB
testcase_17 AC 635 ms
25,208 KB
testcase_18 AC 586 ms
25,352 KB
testcase_19 AC 622 ms
25,872 KB
testcase_20 AC 178 ms
25,828 KB
testcase_21 AC 453 ms
25,320 KB
testcase_22 AC 408 ms
25,680 KB
testcase_23 AC 625 ms
26,312 KB
testcase_24 AC 648 ms
25,172 KB
testcase_25 AC 634 ms
26,252 KB
testcase_26 AC 605 ms
25,204 KB
testcase_27 AC 433 ms
24,312 KB
testcase_28 AC 559 ms
26,596 KB
testcase_29 AC 575 ms
25,912 KB
testcase_30 AC 444 ms
25,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def ilog2(n):
  if n <= 0:
    return 0
  else:
    return n.bit_length() - 1

def _pack(pack, shamt):
  size = len(pack)
  while size > 1:
    npack = []
    for i in range(0, size - 1, 2):
      npack.append(pack[i] | (pack[i+1] << shamt))
    if size & 1:
      npack.append(pack[-1])
    pack = npack
    size = (size + 1) >> 1
    shamt <<= 1
  return pack[0]

def _pack2(seq1, seq2, shamt):
  M1 = _pack(seq1, shamt)
  M2 = _pack(seq2, shamt)
  size = len(seq1) + len(seq2) - 1
  block_size = 1 << ilog2(size - 1)
  return M1, M2, shamt * block_size

def pack_sequence2_mod(seq1, seq2, mod):
  size = min(len(seq1), len(seq2))
  max_value = (mod - 1) ** 2 * size
  shamt = max_value.bit_length()
  return _pack2(seq1, seq2, shamt)

def unpack_sequence(M, size, shamt):
  needed_sizes = []
  s = size
  while s > 1:
    needed_sizes.append(s)
    s = (s + 1) >> 1
  ret = [M]
  for needed_size in needed_sizes[::-1]:
    mask = (1 << shamt) - 1
    nret = []
    for c in ret:
      nret.append(c & mask)
      nret.append(c >> shamt)
    ret = nret[:needed_size]
    shamt >>= 1
  return ret

def poly_mul_mod_builtin(poly1, poly2, mod):
  M1, M2, shamt = pack_sequence2_mod(poly1, poly2, mod)
  size = len(poly1) + len(poly2) - 1
  seq = unpack_sequence(M1 * M2, size, shamt)
  return seq # x % mod

def solve():
  stdin = sys.stdin
  write = sys.stdout.write

  _, _, N = map(int, stdin.readline().split())
  A = [0] * (N + 1)
  B = [0] * (N + 1)
  for n in map(int, stdin.readline().split()):
    A[n] = 1
  for n in map(int, stdin.readline().split()):
    B[N - n] = 1
  Q = int(stdin.readline())
  C = poly_mul_mod_builtin(A, B, 2)
  write("%s\n" % "\n".join(map(str, C[N:N+Q])))

solve()
0