結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-24 16:08:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,213 ms / 7,000 ms
コード長 1,834 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 286,544 KB
最終ジャッジ日時 2024-09-26 08:37:50
合計ジャッジ時間 20,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
55,808 KB
testcase_01 AC 60 ms
62,208 KB
testcase_02 AC 82 ms
70,656 KB
testcase_03 AC 54 ms
56,192 KB
testcase_04 AC 61 ms
62,336 KB
testcase_05 AC 73 ms
67,712 KB
testcase_06 AC 110 ms
78,848 KB
testcase_07 AC 111 ms
78,592 KB
testcase_08 AC 112 ms
79,104 KB
testcase_09 AC 113 ms
78,720 KB
testcase_10 AC 56 ms
56,320 KB
testcase_11 AC 81 ms
70,656 KB
testcase_12 AC 118 ms
78,976 KB
testcase_13 AC 117 ms
79,104 KB
testcase_14 AC 117 ms
78,720 KB
testcase_15 AC 117 ms
78,848 KB
testcase_16 AC 117 ms
78,720 KB
testcase_17 AC 1,076 ms
275,540 KB
testcase_18 AC 1,011 ms
261,200 KB
testcase_19 AC 1,038 ms
273,716 KB
testcase_20 AC 1,012 ms
272,416 KB
testcase_21 AC 1,060 ms
273,416 KB
testcase_22 AC 1,104 ms
262,172 KB
testcase_23 AC 1,213 ms
274,944 KB
testcase_24 AC 1,060 ms
286,544 KB
testcase_25 AC 1,093 ms
285,128 KB
testcase_26 AC 1,082 ms
265,680 KB
testcase_27 AC 1,046 ms
264,200 KB
testcase_28 AC 1,083 ms
267,568 KB
testcase_29 AC 1,100 ms
278,272 KB
testcase_30 AC 1,061 ms
265,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
def convolution(f,g):

    n = len(bin(len(f)+len(g)-1)) - 2
    fft_length = 1<<n

    f = f + [0]*(fft_length - len(f))
    g = g + [0]*(fft_length - len(g))

    def fft(a):

        for i in range(fft_length):
            j = 0
            for k in range(n):
                j |= ((i>>k)&1) << (n - 1 - k)

            if i<j:
                a[i],a[j] = a[j],a[i]
        
        for nn in range(n):
            b = 1<<nn
            for j in range(b):

                w = cmath.rect(1,(-cmath.pi)*j/b)

                for k in range(0,fft_length,2*b):

                    s = a[j+k]
                    t = a[j+k+b]*w
                    a[j+k] = s+t
                    a[j+k+b] = s-t
        
        return a
    
    def ifft(a):
        for i in range(fft_length):
            j = 0
            for k in range(n):
                j |= ((i>>k)&1) << (n - 1 - k)

            if i<j:
                a[i],a[j] = a[j],a[i]
        
        for nn in range(n):
            b = 1<<nn
            for j in range(b):

                w = cmath.rect(1,(cmath.pi)*j/b)

                for k in range(0,fft_length,2*b):

                    s = a[j+k]
                    t = a[j+k+b]*w
                    a[j+k] = s+t
                    a[j+k+b] = s-t
        
        return [i/fft_length for i in a]
            
    F = fft(f)
    G = fft(g)
    H = [i*j for i,j in zip(F,G)]
    return [round(i.real) for i in ifft(H)]


from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

L,M,N = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
X = [0]*(N+1)
Y = [0]*(N+1)
for a in A:
    X[a] += 1
for b in B:
    Y[N-b] += 1

Q = int(input())
Z = convolution(X,Y)
print(*Z[N:N+Q],sep='\n')
0