結果

問題 No.2770 Coupon Optimization
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-11-30 11:01:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,466 ms / 3,000 ms
コード長 1,878 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 329,612 KB
最終ジャッジ日時 2024-05-08 15:29:15
合計ジャッジ時間 30,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
55,936 KB
testcase_01 AC 49 ms
56,448 KB
testcase_02 AC 49 ms
55,808 KB
testcase_03 AC 2,435 ms
317,732 KB
testcase_04 AC 2,342 ms
319,680 KB
testcase_05 AC 828 ms
259,436 KB
testcase_06 AC 2,360 ms
321,744 KB
testcase_07 AC 2,466 ms
321,464 KB
testcase_08 AC 2,399 ms
319,548 KB
testcase_09 AC 859 ms
274,024 KB
testcase_10 AC 869 ms
278,204 KB
testcase_11 AC 835 ms
265,076 KB
testcase_12 AC 2,302 ms
329,612 KB
testcase_13 AC 875 ms
279,780 KB
testcase_14 AC 2,428 ms
320,796 KB
testcase_15 AC 2,322 ms
320,204 KB
testcase_16 AC 2,380 ms
320,444 KB
testcase_17 AC 2,346 ms
320,772 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

N, M = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
for i in range(N):
  A[i] //= 100
for i in range(M):
  B[i] = 100-B[i]
  
for i in range(max(0, N-M)):
  B.append(100)
A.sort()
B.sort()

C = convolution(A,B)
for i in range(N):
  print(C[i])
0