├── .github └── workflows │ ├── ci.yml │ ├── format.yml │ ├── python-package.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── acl_math.py ├── acl_string.py ├── convolution.py ├── dsu.py ├── fenwicktree.py ├── fps.py ├── lazysegtree.py ├── maxflow.py ├── mincostflow.py ├── prime_fact.py ├── pyproject.toml ├── scc.py ├── segtree.py ├── tests ├── test_acl_math.py ├── test_acl_string.py ├── test_basic.py ├── test_convolution.py ├── test_dsu.py ├── test_fenwicktree.py ├── test_fps.py ├── test_lazysegtree.py ├── test_maxflow.py ├── test_mincostflow.py ├── test_prime_fact.py ├── test_scc.py ├── test_segtree.py └── test_two_sat.py └── two_sat.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/README.md -------------------------------------------------------------------------------- /acl_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/acl_math.py -------------------------------------------------------------------------------- /acl_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/acl_string.py -------------------------------------------------------------------------------- /convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/convolution.py -------------------------------------------------------------------------------- /dsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/dsu.py -------------------------------------------------------------------------------- /fenwicktree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/fenwicktree.py -------------------------------------------------------------------------------- /fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/fps.py -------------------------------------------------------------------------------- /lazysegtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/lazysegtree.py -------------------------------------------------------------------------------- /maxflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/maxflow.py -------------------------------------------------------------------------------- /mincostflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/mincostflow.py -------------------------------------------------------------------------------- /prime_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/prime_fact.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/scc.py -------------------------------------------------------------------------------- /segtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/segtree.py -------------------------------------------------------------------------------- /tests/test_acl_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_acl_math.py -------------------------------------------------------------------------------- /tests/test_acl_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_acl_string.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_convolution.py -------------------------------------------------------------------------------- /tests/test_dsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_dsu.py -------------------------------------------------------------------------------- /tests/test_fenwicktree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_fenwicktree.py -------------------------------------------------------------------------------- /tests/test_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_fps.py -------------------------------------------------------------------------------- /tests/test_lazysegtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_lazysegtree.py -------------------------------------------------------------------------------- /tests/test_maxflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_maxflow.py -------------------------------------------------------------------------------- /tests/test_mincostflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_mincostflow.py -------------------------------------------------------------------------------- /tests/test_prime_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_prime_fact.py -------------------------------------------------------------------------------- /tests/test_scc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_scc.py -------------------------------------------------------------------------------- /tests/test_segtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_segtree.py -------------------------------------------------------------------------------- /tests/test_two_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/tests/test_two_sat.py -------------------------------------------------------------------------------- /two_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakayami/ACL-for-python/HEAD/two_sat.py --------------------------------------------------------------------------------