Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ebi-fly13 committed Nov 6, 2023
1 parent 76083b3 commit 80c325d
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 80c325d

Please sign in to comment.