結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー hotman78hotman78
提出日時 2023-02-04 16:02:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,627 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 10,988 KB
実行使用メモリ 61,412 KB
最終ジャッジ日時 2023-09-16 12:42:03
合計ジャッジ時間 7,066 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 131 ms
29,412 KB
testcase_11 AC 137 ms
29,276 KB
testcase_12 AC 129 ms
29,288 KB
testcase_13 AC 132 ms
29,532 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
# copy by https://maspypy.com/%E6%95%B0%E5%AD%A6%E3%83%BBnumpy-%E9%AB%98%E9%80%9F%E3%83%95%E3%83%BC%E3%83%AA%E3%82%A8%E5%A4%89%E6%8F%9Bfft%E3%81%AB%E3%82%88%E3%82%8B%E7%95%B3%E3%81%BF%E8%BE%BC%E3%81%BF
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]
	
def convolve2(f,g,p):
  f1, f2=np.divmod(f,1<<15)
  g1, g2=np.divmod(g,1<<15)
  a=convolve(f1,g1)%p
  c=convolve(f2,g2)%p
  b=(convolve(f1+f2,g1+g2)-(a+c))%p
  h=(a<<30)+(b<<15)+c
  return h%p
n=int(input())
a=np.array(list(map(int,input().split())),np.int64)
m=int(input())
b=np.array(list(map(int,input().split())),np.int64)
while a.size>=2 and a[-1]==0 :
	a.resize(a.size-1)
while b.size>=2 and b[-1]==0 :
	b.resize(b.size-1)
if a==np.zeros(1,np.int64) or b==np.zeros(1,np.int64) :
	print(0)
	print(0)
	exit()
c=convolve2(a%258280327,b%258280327,258280327)
print(c.size-1)
print(' '.join(map(str,c.tolist())))
0