Skip to content

Commit

Permalink
Merge pull request #1104 from NachiaVivias/fix-1092
Browse files Browse the repository at this point in the history
fix #1092
  • Loading branch information
maspypy authored Jan 30, 2024
2 parents d85f451 + f432d78 commit a2b19fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graph/general_weighted_matching/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $N$ 頂点 $M$ 辺からなる単純重み付き無向グラフが与えられ
- $1 \leq N \leq 500$
- $0 \leq M \leq \frac{N(N-1)}{2}$
- $0 \leq u_i, v_i < N$
- $1 \leq w_i \leq 1\,000\,000$
- $1 \leq w_i \leq 1\thinspace 000\thinspace 000$

## @{keyword.input}

Expand Down
2 changes: 1 addition & 1 deletion math/nim_product_64/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Calculate the nim product $A \otimes B$.
The nim sum and the nim product for nonnegative integers are defined recursively as follows:

- $a \oplus b = \operatorname{mex}(\lbrace a' \oplus b \mid a' < a \rbrace \cup \lbrace a \oplus b' \mid b' < b \rbrace)$
- $a \otimes b = \operatorname{mex}\lbrace (a' \otimes b) \oplus (a \otimes b') \oplus (a' \otimes b') \mid a' < a,\, b' < b \rbrace$
- $a \otimes b = \operatorname{mex}\lbrace (a' \otimes b) \oplus (a \otimes b') \oplus (a' \otimes b') \mid a' < a,\thinspace b' < b \rbrace$

## @{keyword.constraints}

Expand Down

0 comments on commit a2b19fc

Please sign in to comment.