結果

問題 No.206 数の積集合を求めるクエリ
ユーザー ygd.ygd.
提出日時 2021-03-28 13:42:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 729 ms / 7,000 ms
コード長 1,288 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 70,344 KB
最終ジャッジ日時 2024-11-29 09:04:01
合計ジャッジ時間 21,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
43,496 KB
testcase_01 AC 462 ms
43,372 KB
testcase_02 AC 466 ms
43,496 KB
testcase_03 AC 485 ms
43,628 KB
testcase_04 AC 461 ms
43,636 KB
testcase_05 AC 462 ms
43,504 KB
testcase_06 AC 449 ms
43,740 KB
testcase_07 AC 480 ms
43,628 KB
testcase_08 AC 460 ms
43,508 KB
testcase_09 AC 458 ms
43,476 KB
testcase_10 AC 460 ms
43,628 KB
testcase_11 AC 459 ms
43,368 KB
testcase_12 AC 474 ms
43,504 KB
testcase_13 AC 524 ms
43,376 KB
testcase_14 AC 462 ms
43,480 KB
testcase_15 AC 460 ms
43,864 KB
testcase_16 AC 456 ms
43,872 KB
testcase_17 AC 633 ms
69,728 KB
testcase_18 AC 573 ms
65,684 KB
testcase_19 AC 600 ms
69,112 KB
testcase_20 AC 546 ms
65,804 KB
testcase_21 AC 566 ms
66,600 KB
testcase_22 AC 575 ms
67,464 KB
testcase_23 AC 595 ms
68,816 KB
testcase_24 AC 729 ms
70,344 KB
testcase_25 AC 704 ms
69,920 KB
testcase_26 AC 654 ms
65,520 KB
testcase_27 AC 613 ms
64,020 KB
testcase_28 AC 675 ms
66,920 KB
testcase_29 AC 669 ms
67,276 KB
testcase_30 AC 653 ms
64,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
#f,gは普通のリスト。
#C[i+j] = ΣF[i]*G[j]
def convolve(f, g):
    """多項式 f, g の積を計算する。
 
    Parameters
    ----------
    f : np.ndarray (int64)
        f[i] に、x^i の係数が入っている
 
    g : np.ndarray (int64)
        g[i] に、x^i の係数が入っている
 
 
    Returns
    -------
    h : np.ndarray
        f,g の積
    """
    # h の長さ以上の n=2^k を計算
    fft_len = 1
    while 2 * fft_len < len(f) + len(g) - 1:
        fft_len *= 2
    fft_len *= 2
 
    # フーリエ変換
    Ff = np.fft.rfft(f, fft_len)
    Fg = np.fft.rfft(g, fft_len)
 
    # 各点積
    Fh = Ff * Fg
 
    # フーリエ逆変換
    h = np.fft.irfft(Fh, fft_len)
 
    # 小数になっているので、整数にまるめる
    h = np.rint(h).astype(np.int64)
 
    return h[:len(f) + len(g) - 1]


L,M,N = map(int,input().split())
A = list(map(int,input().split()))
A = [a-1 for a in A]
B = list(map(int,input().split()))
B = [b-1 for b in B]
Q = int(input())

MAX = pow(2,10*5) + 100
AL = [0]*N
BL = [0]*N
BL_inv = [0]*N
for i in range(L):
  AL[A[i]] = 1
for i in range(M):
  BL[B[i]] = 1
  BL_inv[N - 1 - B[i]] = 1
#print(AL)
#print(BL_inv)
P = convolve(AL,BL_inv)
#print(P)
for i in range(Q):
  print(P[i+N-1])
0