Skip to content

Commit

Permalink
update scl.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
4thcalabash committed Oct 17, 2019
1 parent 389fcdc commit c0c992c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ACM-Code-Library
Submodule ACM-Code-Library updated 76 files
+5 −3 .gitignore
+1 −1 .idea/ACM-Code-Library.iml
+3 −3 .idea/encodings.xml
+6 −6 .idea/misc.xml
+7 −7 .idea/modules.xml
+5 −5 .idea/vcs.xml
+862 −821 .idea/workspace.xml
+75 −75 Algorithm/DSU_On_Tree(General).cpp
+106 −106 Algorithm/Geometry.cpp
+172 −172 Algorithm/MCMF.cpp
+76 −76 Algorithm/Max_Flow.cpp
+55 −55 Algorithm/Multiply_LCA.cpp
+8 −8 CMakeLists.txt
+69 −69 Data_Structure/01Trie.cpp
+90 −90 Data_Structure/AFL(Cactus).cpp
+85 −85 Data_Structure/Cartesian_Tree.cpp
+69 −69 Data_Structure/Chairman_Tree.cpp
+92 −92 Data_Structure/KD_Tree.cpp
+79 −0 Data_Structure/Persistent_LiChao_SegmentTree.cpp
+148 −148 Data_Structure/Rollback_UFS.cpp
+84 −84 Data_Structure/Segment_Tree(Dynamic_Memory).cpp
+65 −65 Data_Structure/Segment_Tree.cpp
+87 −87 Graph/Dijkstra.cpp
+114 −114 Graph/Dijkstra_interval_graph.cpp
+42 −42 Graph/EulorTour.cpp
+77 −77 Graph/Tarjan(BCC_Edge).cpp
+66 −66 Graph/Tarjan(BCC_Point).cpp
+60 −60 Graph/Tarjan(SCC).cpp
+251 −0 Graph/Tree/Edge-Divide&Conquer.cpp
+120 −120 Graph/Tree/Heavy_Light_Decomposition.cpp
+102 −102 Graph/Tree/Point-Divide&Conquer.cpp
+94 −94 Graph/Tree/Virtual_Tree.cpp
+89 −89 Math/BerlekampMassey.cpp
+61 −61 Math/CRT.cpp
+174 −174 Math/FFT.cpp
+50 −50 Math/FWT.cpp
+49 −49 Math/Linear_Basis.cpp
+130 −130 Math/Matrix.cpp
+53 −53 Math/Mobius.cpp
+49 −49 Math/linear_sieve.cpp
+29 −29 Others/Header.cpp
+1 −0 Others/formula.txt
+11 −7 README.md
+109 −109 String/Automaton/Aho-Corasick_Automaton.cpp
+127 −127 String/Automaton/Generalized_Suffix_Automaton.cpp
+75 −75 String/Automaton/Palindromic_Automaton.cpp
+171 −171 String/Automaton/Suffix_Automaton.cpp
+99 −99 String/Hash-1D.cpp
+138 −138 String/KMP.cpp
+44 −44 String/Manacher.cpp
+214 −214 String/Suffix_Array.cpp
+ cmake-build-debug/ACM-Code-Library
+0 −90 cmake-build-debug/ACM-Code-Library.cbp
+ cmake-build-debug/ACM-Code-Library.exe
+0 −404 cmake-build-debug/CMakeCache.txt
+0 −20 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/DependInfo.cmake
+0 −99 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/build.make
+0 −12 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/cmake_clean.cmake
+0 −2 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/depend.make
+0 −10 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/flags.make
+0 −3 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/link.txt
+0 −3 cmake-build-debug/CMakeFiles/ACM-Code-Library.dir/progress.make
+0 −16 cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
+0 −783 cmake-build-debug/CMakeFiles/CMakeOutput.log
+0 −55 cmake-build-debug/CMakeFiles/Makefile.cmake
+0 −112 cmake-build-debug/CMakeFiles/Makefile2
+0 −3 cmake-build-debug/CMakeFiles/TargetDirectories.txt
+0 −4 cmake-build-debug/CMakeFiles/clion-environment.txt
+0 −4 cmake-build-debug/CMakeFiles/clion-log.txt
+0 −1 cmake-build-debug/CMakeFiles/cmake.check_cache
+ cmake-build-debug/CMakeFiles/feature_tests.bin
+0 −34 cmake-build-debug/CMakeFiles/feature_tests.c
+0 −405 cmake-build-debug/CMakeFiles/feature_tests.cxx
+0 −1 cmake-build-debug/CMakeFiles/progress.marks
+0 −177 cmake-build-debug/Makefile
+0 −44 cmake-build-debug/cmake_install.cmake
6 changes: 6 additions & 0 deletions scl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
fname: Segment_Tree(Dynamic_Memory).cpp
- title: Rollback UFS
fname: Rollback_UFS.cpp
- title: Persistent LiChao SegmentTree
fname: Persistent_LiChao_SegmentTree.cpp
- name: Graph
dir: Graph/
files:
Expand All @@ -75,6 +77,8 @@
files:
- title: Divide \& Conquer of Point
fname: Point-Divide&Conquer.cpp
- title: Divide \& Conquer of Edge
fname: Edge-Divide&Conquer.cpp
- title: Heavy Light Decomposition
fname: Heavy_Light_Decomposition.cpp
- title: Virtual Tree
Expand Down Expand Up @@ -104,3 +108,5 @@
files:
- title: Header
fname: Header.cpp
- title: FORMULA
fname: formula.txt

0 comments on commit c0c992c

Please sign in to comment.