├── .gitignore ├── README.md ├── 教程 ├── 动态规划 │ ├── 树上背包 │ │ ├── src │ │ │ └── main.tex │ │ └── 树上背包.pdf │ └── 背包入门 │ │ ├── src │ │ ├── main.tex │ │ └── template.tex │ │ └── 背包入门.pdf ├── 字符串 │ └── KMP │ │ ├── KMP.pdf │ │ └── src │ │ ├── 1.png │ │ ├── 1.tex │ │ ├── 2.png │ │ └── kmp.cpp └── 数学 │ ├── Cipolla's Algorithm │ ├── Cipolla_s_algorithm.pdf │ └── src │ │ └── main.tex │ ├── 斯特林数 │ ├── src │ │ └── main.tex │ └── 斯特林数.pdf │ ├── 线性递推 │ ├── src │ │ └── main.tex │ └── 线性递推.pdf │ └── (扩展)欧几里得算法 │ ├── src │ ├── exgcd.cpp │ ├── gcd.cpp │ └── main.tex │ └── 辗转相除法 & exGCD.pdf └── 题解 ├── 单题 ├── Ad Hoc │ ├── AGC 005 E. Sugigma- The Showdown.pdf │ ├── AGC 006 D. Median Pyramid Hard.pdf │ ├── AGC 045 B. 01 Unbalanced.pdf │ ├── CC. BINARY.pdf │ └── 约瑟夫环.pdf ├── 动态规划 │ ├── AGC 009 D. Uninity.pdf │ └── CF 10 D. LCIS.pdf ├── 图论 │ ├── AGC 038 D. Unique Path.pdf │ ├── BJOI 2013. 压力.pdf │ ├── CC. CUREK.pdf │ ├── CF 980 F. Cactus to Tree.pdf │ ├── SGU 286. Ancient decoration.pdf │ ├── SGU 314. Shortest Paths.pdf │ └── SHOI 2008. cactus仙人掌图.pdf ├── 字符串 │ └── CC. PRDRAW.pdf ├── 数据结构 │ └── CF 407 E. k-d-sequence.pdf ├── 数论 │ ├── LA 4275. Rational Number Approximation.pdf │ ├── SGU 511. Fermat's Last Theorem.pdf │ ├── UESTC. GCD.pdf │ └── 一个人的数论.pdf ├── 概率与期望 │ └── AGC 030 D. Inversion Sum.pdf └── 组合 │ ├── AGC 005 D. K Perm Counting.pdf │ ├── AGC 005 F. Many Easy Problems.pdf │ ├── AGC 045 C. Range Set.pdf │ ├── CC. CUTTREE.pdf │ ├── CF 840 C. On the Bench.pdf │ ├── CF 960 G. Bandit Blues.pdf │ └── 牛客. 青蛙树.pdf └── 比赛 ├── Atcoder Educational DP Contest Editorial ├── Educational_DP_Contest_Editorial.pdf └── src │ ├── 1.tex │ ├── A.tex │ ├── B.tex │ ├── C.tex │ ├── Code │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ ├── L.cpp │ ├── M.cpp │ ├── N.cpp │ ├── O.cpp │ ├── P.cpp │ ├── Q.cpp │ ├── R.cpp │ ├── S.cpp │ ├── S2.cpp │ ├── T.cpp │ ├── U.cpp │ ├── U2.cpp │ ├── U3.cpp │ ├── V.cpp │ ├── W.cpp │ ├── X.cpp │ ├── Y.cpp │ ├── Z.cpp │ └── Z2.py │ ├── D.tex │ ├── E.tex │ ├── F.tex │ ├── G.tex │ ├── H.tex │ ├── I.tex │ ├── J.tex │ ├── K.tex │ ├── L.tex │ ├── M.tex │ ├── N.tex │ ├── O.tex │ ├── P.tex │ ├── Pics │ ├── IJK.png │ ├── Perfect Matching.png │ ├── R.png │ ├── grid.png │ ├── tower.png │ ├── with_root.png │ └── without_root.png │ ├── Preface.tex │ ├── Q.tex │ ├── R.tex │ ├── S.tex │ ├── T.tex │ ├── U.tex │ ├── V.tex │ ├── W.tex │ ├── X.tex │ ├── Y.tex │ └── Z.tex ├── CSP 2020 J ├── CSP 2020 J.pdf └── src │ ├── T1.cpp │ ├── T2.cpp │ ├── T3.cpp │ ├── T4.cpp │ └── main.tex └── LeetCode 选讲 ├── LeetCode 选讲.pdf └── src ├── main.tex └── template.tex /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/README.md -------------------------------------------------------------------------------- /教程/动态规划/树上背包/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/动态规划/树上背包/src/main.tex -------------------------------------------------------------------------------- /教程/动态规划/树上背包/树上背包.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/动态规划/树上背包/树上背包.pdf -------------------------------------------------------------------------------- /教程/动态规划/背包入门/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/动态规划/背包入门/src/main.tex -------------------------------------------------------------------------------- /教程/动态规划/背包入门/src/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/动态规划/背包入门/src/template.tex -------------------------------------------------------------------------------- /教程/动态规划/背包入门/背包入门.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/动态规划/背包入门/背包入门.pdf -------------------------------------------------------------------------------- /教程/字符串/KMP/KMP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/字符串/KMP/KMP.pdf -------------------------------------------------------------------------------- /教程/字符串/KMP/src/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/字符串/KMP/src/1.png -------------------------------------------------------------------------------- /教程/字符串/KMP/src/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/字符串/KMP/src/1.tex -------------------------------------------------------------------------------- /教程/字符串/KMP/src/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/字符串/KMP/src/2.png -------------------------------------------------------------------------------- /教程/字符串/KMP/src/kmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/字符串/KMP/src/kmp.cpp -------------------------------------------------------------------------------- /教程/数学/Cipolla's Algorithm/Cipolla_s_algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/Cipolla's Algorithm/Cipolla_s_algorithm.pdf -------------------------------------------------------------------------------- /教程/数学/Cipolla's Algorithm/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/Cipolla's Algorithm/src/main.tex -------------------------------------------------------------------------------- /教程/数学/斯特林数/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/斯特林数/src/main.tex -------------------------------------------------------------------------------- /教程/数学/斯特林数/斯特林数.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/斯特林数/斯特林数.pdf -------------------------------------------------------------------------------- /教程/数学/线性递推/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/线性递推/src/main.tex -------------------------------------------------------------------------------- /教程/数学/线性递推/线性递推.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/线性递推/线性递推.pdf -------------------------------------------------------------------------------- /教程/数学/(扩展)欧几里得算法/src/exgcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/(扩展)欧几里得算法/src/exgcd.cpp -------------------------------------------------------------------------------- /教程/数学/(扩展)欧几里得算法/src/gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/(扩展)欧几里得算法/src/gcd.cpp -------------------------------------------------------------------------------- /教程/数学/(扩展)欧几里得算法/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/(扩展)欧几里得算法/src/main.tex -------------------------------------------------------------------------------- /教程/数学/(扩展)欧几里得算法/辗转相除法 & exGCD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/教程/数学/(扩展)欧几里得算法/辗转相除法 & exGCD.pdf -------------------------------------------------------------------------------- /题解/单题/Ad Hoc/AGC 005 E. Sugigma- The Showdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/Ad Hoc/AGC 005 E. Sugigma- The Showdown.pdf -------------------------------------------------------------------------------- /题解/单题/Ad Hoc/AGC 006 D. Median Pyramid Hard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/Ad Hoc/AGC 006 D. Median Pyramid Hard.pdf -------------------------------------------------------------------------------- /题解/单题/Ad Hoc/AGC 045 B. 01 Unbalanced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/Ad Hoc/AGC 045 B. 01 Unbalanced.pdf -------------------------------------------------------------------------------- /题解/单题/Ad Hoc/CC. BINARY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/Ad Hoc/CC. BINARY.pdf -------------------------------------------------------------------------------- /题解/单题/Ad Hoc/约瑟夫环.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/Ad Hoc/约瑟夫环.pdf -------------------------------------------------------------------------------- /题解/单题/动态规划/AGC 009 D. Uninity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/动态规划/AGC 009 D. Uninity.pdf -------------------------------------------------------------------------------- /题解/单题/动态规划/CF 10 D. LCIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/动态规划/CF 10 D. LCIS.pdf -------------------------------------------------------------------------------- /题解/单题/图论/AGC 038 D. Unique Path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/AGC 038 D. Unique Path.pdf -------------------------------------------------------------------------------- /题解/单题/图论/BJOI 2013. 压力.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/BJOI 2013. 压力.pdf -------------------------------------------------------------------------------- /题解/单题/图论/CC. CUREK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/CC. CUREK.pdf -------------------------------------------------------------------------------- /题解/单题/图论/CF 980 F. Cactus to Tree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/CF 980 F. Cactus to Tree.pdf -------------------------------------------------------------------------------- /题解/单题/图论/SGU 286. Ancient decoration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/SGU 286. Ancient decoration.pdf -------------------------------------------------------------------------------- /题解/单题/图论/SGU 314. Shortest Paths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/SGU 314. Shortest Paths.pdf -------------------------------------------------------------------------------- /题解/单题/图论/SHOI 2008. cactus仙人掌图.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/图论/SHOI 2008. cactus仙人掌图.pdf -------------------------------------------------------------------------------- /题解/单题/字符串/CC. PRDRAW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/字符串/CC. PRDRAW.pdf -------------------------------------------------------------------------------- /题解/单题/数据结构/CF 407 E. k-d-sequence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/数据结构/CF 407 E. k-d-sequence.pdf -------------------------------------------------------------------------------- /题解/单题/数论/LA 4275. Rational Number Approximation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/数论/LA 4275. Rational Number Approximation.pdf -------------------------------------------------------------------------------- /题解/单题/数论/SGU 511. Fermat's Last Theorem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/数论/SGU 511. Fermat's Last Theorem.pdf -------------------------------------------------------------------------------- /题解/单题/数论/UESTC. GCD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/数论/UESTC. GCD.pdf -------------------------------------------------------------------------------- /题解/单题/数论/一个人的数论.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/数论/一个人的数论.pdf -------------------------------------------------------------------------------- /题解/单题/概率与期望/AGC 030 D. Inversion Sum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/概率与期望/AGC 030 D. Inversion Sum.pdf -------------------------------------------------------------------------------- /题解/单题/组合/AGC 005 D. K Perm Counting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/AGC 005 D. K Perm Counting.pdf -------------------------------------------------------------------------------- /题解/单题/组合/AGC 005 F. Many Easy Problems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/AGC 005 F. Many Easy Problems.pdf -------------------------------------------------------------------------------- /题解/单题/组合/AGC 045 C. Range Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/AGC 045 C. Range Set.pdf -------------------------------------------------------------------------------- /题解/单题/组合/CC. CUTTREE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/CC. CUTTREE.pdf -------------------------------------------------------------------------------- /题解/单题/组合/CF 840 C. On the Bench.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/CF 840 C. On the Bench.pdf -------------------------------------------------------------------------------- /题解/单题/组合/CF 960 G. Bandit Blues.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/CF 960 G. Bandit Blues.pdf -------------------------------------------------------------------------------- /题解/单题/组合/牛客. 青蛙树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/单题/组合/牛客. 青蛙树.pdf -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/Educational_DP_Contest_Editorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/Educational_DP_Contest_Editorial.pdf -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/1.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/A.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/A.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/B.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/B.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/C.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/C.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/A.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/B.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/C.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/D.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/E.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/F.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/G.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/H.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/H.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/I.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/J.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/J.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/K.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/L.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/L.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/M.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/M.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/N.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/O.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/O.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/P.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/P.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Q.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/R.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/R.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/S.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/S2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/S2.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/T.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/U.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/U2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/U2.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/U3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/U3.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/V.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/W.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/W.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/X.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Y.cpp -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Z.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Z2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Code/Z2.py -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/D.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/D.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/E.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/E.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/F.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/F.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/G.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/G.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/H.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/H.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/I.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/I.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/J.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/J.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/K.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/K.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/L.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/L.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/M.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/M.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/N.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/N.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/O.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/O.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/P.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/P.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/IJK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/IJK.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/Perfect Matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/Perfect Matching.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/R.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/grid.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/tower.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/with_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/with_root.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/without_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Pics/without_root.png -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Preface.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Q.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Q.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/R.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/R.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/S.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/S.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/T.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/T.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/U.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/U.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/V.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/V.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/W.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/W.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/X.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/X.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Y.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Y.tex -------------------------------------------------------------------------------- /题解/比赛/Atcoder Educational DP Contest Editorial/src/Z.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/Atcoder Educational DP Contest Editorial/src/Z.tex -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/CSP 2020 J.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/CSP 2020 J.pdf -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/src/T1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/src/T1.cpp -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/src/T2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/src/T2.cpp -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/src/T3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/src/T3.cpp -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/src/T4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/src/T4.cpp -------------------------------------------------------------------------------- /题解/比赛/CSP 2020 J/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/CSP 2020 J/src/main.tex -------------------------------------------------------------------------------- /题解/比赛/LeetCode 选讲/LeetCode 选讲.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/LeetCode 选讲/LeetCode 选讲.pdf -------------------------------------------------------------------------------- /题解/比赛/LeetCode 选讲/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/LeetCode 选讲/src/main.tex -------------------------------------------------------------------------------- /题解/比赛/LeetCode 选讲/src/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamZhangQingChuan/Editorials/HEAD/题解/比赛/LeetCode 选讲/src/template.tex --------------------------------------------------------------------------------