結果
| 問題 | No.1066 #いろいろな色 / Red and Blue and more various colors (Easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-12-05 20:52:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,325 bytes |
| 記録 | |
| コンパイル時間 | 203 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 44,500 KB |
| 最終ジャッジ日時 | 2024-07-07 08:47:51 |
| 合計ジャッジ時間 | 14,678 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 24 |
ソースコード
import numpy as np
def convolve(f, g):
tf = np.array(f, np.int64)
tg = np.array(g, np.int64)
fft_len = 1
while 2 * fft_len < len(tf) + len(tg) - 1:
fft_len *= 2
fft_len *= 2
# フーリエ変換
Ff = np.fft.rfft(tf, fft_len)
Fg = np.fft.rfft(tg, 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
def convolve_pow(f,n,p):
nbit = list(str(bin(n))[2:])
nbit = [int(i) for i in nbit]
N = len(f)
C = [1] + [0]*(N-1)
B = f
for i in range(len(nbit)):
if nbit[-1-i] == 1:
C = convolve2(C,B,p)
B = convolve2(B,B,p)
return C
N,Q = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
p = 998244353
res = [1] + [0]*N
for i in range(N):
res = convolve2(res,[A[i]-1,1])
for i in range(Q):
b = B[i]
print(res[b])