Skip to content

Commit

Permalink
Merge pull request #1053 from ebi-fly13/fix-typo/min-plus-convolution
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
maspypy authored Nov 6, 2023
2 parents 76083b3 + 80c325d commit c87f58f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion math/min_plus_convolution_convex_arbitrary/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $$c_k = \min_{i+j=k} (a_i+b_j)$$
@{lang.ja}
整数列 $a_0, a_1, ..., a_{N - 1}$、$b_0, b_1, ..., b_{M - 1}$ が与えられます。ここで $a$ は凸です。次のように定義される整数列 $c_0, c_1, ..., c_{(N - 1) + (M - 1)}$ を求めてください。

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

@{lang.end}

Expand Down
2 changes: 1 addition & 1 deletion math/min_plus_convolution_convex_convex/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $$c_k = \min_{i+j=k} (a_i+b_j)$$
@{lang.ja}
整数列 $a_0, a_1, ..., a_{N - 1}$、$b_0, b_1, ..., b_{M - 1}$ が与えられます。ここで $a$ と $b$ は凸です。次のように定義される整数列 $c_0, c_1, ..., c_{(N - 1) + (M - 1)}$ を求めてください。

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

@{lang.end}

Expand Down

0 comments on commit c87f58f

Please sign in to comment.