Problem11287--[yosupo] Convolution - Min Plus Convolution (Convex and Arbitrary)

11287: [yosupo] Convolution - Min Plus Convolution (Convex and Arbitrary)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Given integer sequences $a_0, a_1, ..., a_{N - 1}$ and $b_0, b_1, ..., b_{M - 1}$. Here, $a$ is convex. Calculate an integer sequence $c_0, c_1, ..., c_{(N - 1) + (M - 1)}$ defined as follows:

$c_k = \min_{i+j=k} (a_i+b_j)$

Input

$N$ $M$
$a_0$ $a_1$ ... $a_{N-1}$
$b_0$ $b_1$ ... $b_{M-1}$

Output

$c_0$ $c_1$ ... $c_{(N - 1) + (M - 1)}$

Constraints

- $1 \leq N, M \leq 2^{19}$
- $0 \leq a_i, b_i \leq 10^9$
- $a$ is convex. i.e. $a_{i+1}-a_i\leq a_{i+2}-a_{i+1}$ holds for $0\leq i < N - 2$.

Sample 1 Input

4 5
3 1 0 3
5 1 3 3 2

Sample 1 Output

8 4 2 1 3 3 2 5

HINT

Yosupo.

Source/Category