結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Min_25Min_25
提出日時 2015-05-09 11:10:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 668 ms / 7,000 ms
コード長 1,712 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 77,892 KB
実行使用メモリ 146,228 KB
最終ジャッジ日時 2023-09-19 09:25:51
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,120 KB
testcase_01 AC 77 ms
76,092 KB
testcase_02 AC 77 ms
76,544 KB
testcase_03 AC 76 ms
76,496 KB
testcase_04 AC 76 ms
76,228 KB
testcase_05 AC 76 ms
76,708 KB
testcase_06 AC 95 ms
79,164 KB
testcase_07 AC 91 ms
79,228 KB
testcase_08 AC 89 ms
79,184 KB
testcase_09 AC 89 ms
79,196 KB
testcase_10 AC 75 ms
76,168 KB
testcase_11 AC 76 ms
76,392 KB
testcase_12 AC 90 ms
79,100 KB
testcase_13 AC 89 ms
79,204 KB
testcase_14 AC 89 ms
79,336 KB
testcase_15 AC 91 ms
79,112 KB
testcase_16 AC 89 ms
78,832 KB
testcase_17 AC 291 ms
121,816 KB
testcase_18 AC 287 ms
121,112 KB
testcase_19 AC 290 ms
122,616 KB
testcase_20 AC 195 ms
113,584 KB
testcase_21 AC 668 ms
127,176 KB
testcase_22 AC 241 ms
117,312 KB
testcase_23 AC 293 ms
122,696 KB
testcase_24 AC 333 ms
146,228 KB
testcase_25 AC 298 ms
122,132 KB
testcase_26 AC 294 ms
123,864 KB
testcase_27 AC 255 ms
127,980 KB
testcase_28 AC 298 ms
135,408 KB
testcase_29 AC 287 ms
119,476 KB
testcase_30 AC 254 ms
122,248 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