Merged
Conversation
lrvideckis
commented
Jun 18, 2024
Comment on lines
+3
to
+9
| - [dsu](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/dsu.rs) | ||
| - [suffix, lcp, z arrays](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/string.rs) | ||
| - [mod int](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/modint.rs) | ||
| - [barrett multiplication, primitive root](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/internal_math.rs) | ||
| - [NTT](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/convolution.rs) | ||
| - [max flow](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/maxflow.rs) | ||
| - [min cost max flow](https://github.com/rust-lang-ja/ac-library-rs/blob/master/src/mincostflow.rs) |
Member
Author
There was a problem hiding this comment.
these are the algs which I wanna use from them
lrvideckis
commented
Jun 18, 2024
src/README.md
Outdated
| @@ -0,0 +1,9 @@ | |||
| ## Other Algs which we use (and thus won't implement ourselves) | |||
Member
Author
There was a problem hiding this comment.
what's a better wording?
Member
There was a problem hiding this comment.
I don't think what you have is bad, but here is an alternative since you asked for one
"Better implementations than we could write"
Anything we reference should actually be better than anything we could write otherwise we should just write it ourselves (better)
cameroncuster
approved these changes
Jun 20, 2024
cameroncuster
approved these changes
Jun 20, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I think we should write our own is_prime which works for i64/u64's; atcoder's only works for i32's