# My Competitive Programming Library for AtCoder
## In your `Cargo.toml`
```toml
[dependencies]
sfcpl = "*" // <- specify version
```
## Usage
on head of the binary file...
```rust
use sfcpl;
```
## Capital module
### structure
- SegmentTree
- FenwickTree
- Accumlate
- UnionFind
### prime
- Eratosthenes Sieve based
- Trial Division based
### Graph
- DFS
- BFS
- Dijkstra Algorythms
- Grid Graph
### Combinatorics
- Binary Coefficient
- Permutations
- Combinations
### ModInt
## Under developing
> - Bellmanford Algorythm
>
> - CRT
>
> and so on