結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー hotman78hotman78
提出日時 2023-02-04 15:46:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,524 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 105,128 KB
最終ジャッジ日時 2024-07-03 12:59:50
合計ジャッジ時間 21,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 477 ms
44,388 KB
testcase_01 AC 489 ms
44,528 KB
testcase_02 AC 481 ms
44,392 KB
testcase_03 AC 504 ms
44,168 KB
testcase_04 AC 500 ms
44,144 KB
testcase_05 AC 494 ms
44,780 KB
testcase_06 AC 494 ms
44,136 KB
testcase_07 AC 491 ms
44,524 KB
testcase_08 AC 494 ms
44,652 KB
testcase_09 AC 500 ms
44,392 KB
testcase_10 AC 488 ms
44,520 KB
testcase_11 AC 490 ms
44,524 KB
testcase_12 AC 499 ms
44,400 KB
testcase_13 AC 496 ms
44,396 KB
testcase_14 AC 500 ms
44,520 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 495 ms
44,528 KB
testcase_19 AC 495 ms
44,388 KB
testcase_20 AC 496 ms
44,136 KB
testcase_21 AC 490 ms
44,520 KB
testcase_22 AC 489 ms
44,520 KB
testcase_23 AC 495 ms
44,400 KB
testcase_24 AC 490 ms
44,516 KB
testcase_25 AC 509 ms
45,032 KB
testcase_26 AC 508 ms
45,160 KB
testcase_27 AC 543 ms
48,512 KB
testcase_28 AC 543 ms
48,612 KB
testcase_29 AC 749 ms
72,384 KB
testcase_30 AC 1,021 ms
105,128 KB
testcase_31 AC 1,008 ms
98,920 KB
testcase_32 AC 1,020 ms
105,108 KB
権限があれば一括ダウンロードができます

ソースコード

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(lambda x:x%258280327,map(int,input().split()))),np.int64)
m=int(input())
b=np.array(list(map(lambda x:x%258280327,map(int,input().split()))),np.int64)
c=convolve2(a,b,258280327)
while c.size>=2 and c[-1]==0 :
	c.resize(c.size-1)
print(c.size-1)
print(' '.join(map(str,c.tolist())))
0