├── .editorconfig ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-3.3.1.cjs ├── .yarnrc.yml ├── README.md ├── docs ├── .vuepress │ ├── components │ │ ├── BlogList.vue │ │ └── Utterances.vue │ ├── config.js │ ├── enhanceApp.js │ ├── nav │ │ ├── en.js │ │ └── zh.js │ ├── plugins │ │ └── robots.js │ ├── public │ │ ├── ads.txt │ │ ├── favicon.ico │ │ └── problem.png │ ├── sidebar │ │ ├── en.js │ │ └── zh.js │ ├── styles │ │ ├── index.styl │ │ └── palette.styl │ ├── templates │ │ ├── dev.html │ │ └── ssr.html │ └── utils │ │ └── index.js ├── README.md ├── _blogs │ ├── 2020-09-03-plug-the-blog-plugin-into-vuepress-default-theme.md │ ├── 2020-09-05-shortcut-for-blog-creation.md │ └── 2020-09-10-gmt-zhong-wen-zhi-chi.md ├── ad-hoc │ ├── README.md │ └── src │ │ └── Kattis-jugglingpatterns.py ├── algebra │ ├── README.md │ ├── binary-exponentiation │ │ ├── README.md │ │ └── src │ │ │ ├── LG-P1226-Iteration.cpp │ │ │ └── LG-P1226-Recursion.cpp │ ├── catalan │ │ └── README.md │ └── fast-fourier-transform │ │ ├── README.md │ │ └── src │ │ ├── LG-P3803-Iteration.cpp │ │ ├── LG-P3803-Iteration.kt │ │ ├── LG-P3803-Recursion.cpp │ │ ├── SPOJ-ADAMATCH.cpp │ │ └── SPOJ-TSUM.cpp ├── basic │ ├── README.md │ ├── binary-search │ │ ├── CF1394C.png │ │ ├── README.md │ │ └── src │ │ │ └── SPOJ-AGGRCOW.cpp │ ├── breadth-first-search │ │ └── README.md │ ├── enumerate │ │ └── README.md │ ├── invariant │ │ └── README.md │ ├── small-to-large │ │ └── README.md │ ├── sorting │ │ └── README.md │ └── ternary-search │ │ └── README.md ├── blog │ └── README.md ├── combinatorics │ ├── README.md │ ├── inclusion-exclusion │ │ └── README.md │ └── miscellaneous │ │ └── README.md ├── data-structure │ ├── README.md │ ├── balanced-binary-search-tree │ │ └── README.md │ ├── disjoint-sets-union │ │ └── README.md │ ├── queue │ │ └── README.md │ ├── segment-tree │ │ ├── README.md │ │ ├── segment-tree.png │ │ └── src │ │ │ ├── CF-EDU-ST-P1-S1B.kt │ │ │ ├── LG-P3372-Normal.cpp │ │ │ ├── LG-P3372-Persistent-Tag.cpp │ │ │ └── SPOJ-GSS1.cpp │ └── stack │ │ └── README.md ├── dynamic-programming │ ├── README.md │ └── bitmask-dp │ │ └── README.md ├── en │ ├── README.md │ ├── ad-hoc │ │ └── README.md │ ├── blog │ │ └── README.md │ ├── dynamic-programming │ │ └── README.md │ ├── hall-of-fame │ │ └── README.md │ ├── jargon │ │ └── README.md │ ├── string │ │ └── aho-corasick │ │ │ └── README.md │ └── tutorial │ │ ├── advent-of-code │ │ ├── 2015 │ │ │ └── README.md │ │ ├── 2016 │ │ │ └── README.md │ │ ├── 2017 │ │ │ └── README.md │ │ ├── 2018 │ │ │ └── README.md │ │ ├── 2019 │ │ │ └── README.md │ │ ├── 2020 │ │ │ └── README.md │ │ ├── 2021 │ │ │ └── README.md │ │ └── README.md │ │ ├── atcoder │ │ ├── ABC174 │ │ │ └── README.md │ │ ├── ABC175 │ │ │ └── README.md │ │ ├── ABC176 │ │ │ └── README.md │ │ ├── ABC177 │ │ │ └── README.md │ │ ├── ABC178 │ │ │ └── README.md │ │ ├── ABC179 │ │ │ └── README.md │ │ ├── ABC182 │ │ │ ├── F.png │ │ │ └── README.md │ │ ├── ABC183 │ │ │ └── README.md │ │ ├── ABC184 │ │ │ └── README.md │ │ ├── ABC185 │ │ │ └── README.md │ │ ├── ABC186 │ │ │ └── README.md │ │ ├── ABC187 │ │ │ └── README.md │ │ ├── ABC188 │ │ │ └── README.md │ │ ├── ABC189 │ │ │ └── README.md │ │ ├── ABC190 │ │ │ └── README.md │ │ ├── ABC191 │ │ │ └── README.md │ │ ├── ABC195 │ │ │ └── README.md │ │ ├── ABC203 │ │ │ └── README.md │ │ └── README.md │ │ ├── codeforces │ │ ├── 1388 │ │ │ └── README.md │ │ ├── 1389 │ │ │ └── README.md │ │ ├── 1393 │ │ │ └── README.md │ │ ├── 1396 │ │ │ ├── P3.png │ │ │ └── README.md │ │ ├── 1398 │ │ │ └── README.md │ │ ├── 1399 │ │ │ └── README.md │ │ ├── 1400 │ │ │ └── README.md │ │ ├── 1401 │ │ │ └── README.md │ │ ├── 1407 │ │ │ └── README.md │ │ ├── 1409 │ │ │ └── README.md │ │ ├── 1437 │ │ │ └── README.md │ │ └── README.md │ │ ├── kick-start │ │ ├── 2019C │ │ │ └── README.md │ │ ├── 2019D │ │ │ └── README.md │ │ ├── 2019F │ │ │ └── README.md │ │ ├── 2019G │ │ │ └── README.md │ │ ├── 2020D │ │ │ └── README.md │ │ ├── 2020E │ │ │ └── README.md │ │ ├── 2020F │ │ │ └── README.md │ │ ├── 2020H │ │ │ └── README.md │ │ ├── 2021A │ │ │ └── README.md │ │ ├── 2021B │ │ │ └── README.md │ │ ├── 2022A │ │ │ └── README.md │ │ └── README.md │ │ ├── leetcode │ │ └── README.md │ │ ├── others │ │ └── README.md │ │ ├── project-euler │ │ └── README.md │ │ └── uoj │ │ ├── 002 │ │ ├── README.md │ │ └── src │ │ │ ├── 002.cpp │ │ │ ├── ans1.txt │ │ │ ├── ans2.txt │ │ │ ├── in1.txt │ │ │ └── in2.txt │ │ ├── 003 │ │ └── README.md │ │ ├── 005 │ │ ├── README.md │ │ └── src │ │ │ ├── 005.cpp │ │ │ ├── ans1.txt │ │ │ ├── ans2.txt │ │ │ ├── in1.txt │ │ │ └── in2.txt │ │ ├── README.md │ │ ├── Register_1.png │ │ ├── Register_2.png │ │ ├── Register_3.png │ │ ├── Submit_1.png │ │ └── Submit_2.png ├── geometry │ ├── README.md │ └── basic │ │ └── README.md ├── graph-theory │ ├── README.md │ ├── bridge │ │ └── README.md │ └── scc │ │ └── README.md ├── hall-of-fame │ └── README.md ├── jargon │ └── README.md ├── miscellaneous │ ├── README.md │ └── sprague-grundy │ │ └── README.md ├── string │ ├── README.md │ ├── aho-corasick │ │ ├── README.md │ │ └── src │ │ │ ├── CF1400F.cpp │ │ │ └── SPOJ-ADAJOBS.cpp │ ├── prefix-function │ │ └── README.md │ └── trie │ │ └── README.md ├── tips │ └── README.md └── tutorial │ ├── advent-of-code │ ├── 2015 │ │ └── README.md │ ├── 2016 │ │ └── README.md │ ├── 2017 │ │ └── README.md │ ├── 2018 │ │ └── README.md │ ├── 2019 │ │ └── README.md │ ├── 2020 │ │ └── README.md │ ├── 2021 │ │ └── README.md │ └── README.md │ ├── atcoder │ ├── ABC174 │ │ ├── README.md │ │ └── src │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC175 │ │ ├── README.md │ │ └── src │ │ │ ├── d.cpp │ │ │ ├── d2.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC176 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC177 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── f2.cpp │ ├── ABC178 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC179 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC182 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC183 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC184 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC185 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── e.py │ │ │ └── f.cpp │ ├── ABC186 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── e.py │ │ │ └── f.cpp │ ├── ABC187 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── ABC188 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── d2.cpp │ │ │ ├── e.cpp │ │ │ └── f.py │ ├── ABC189 │ │ ├── README.md │ │ └── src │ │ │ ├── a.rs │ │ │ ├── b.rs │ │ │ ├── c.rs │ │ │ ├── d.rs │ │ │ ├── e.rs │ │ │ └── f.rs │ ├── ABC190 │ │ ├── README.md │ │ └── src │ │ │ ├── a.rs │ │ │ ├── b.rs │ │ │ ├── c.rs │ │ │ ├── d.cpp │ │ │ ├── d.rs │ │ │ ├── e.cpp │ │ │ ├── e.rs │ │ │ ├── f.cpp │ │ │ └── f.rs │ ├── ABC191 │ │ ├── README.md │ │ └── src │ │ │ ├── a.rs │ │ │ ├── b.rs │ │ │ ├── c.rs │ │ │ ├── d.rs │ │ │ ├── e.rs │ │ │ ├── f.cpp │ │ │ └── f.rs │ ├── ABC195 │ │ └── src │ │ │ ├── a.rs │ │ │ ├── b.rs │ │ │ ├── c.rs │ │ │ ├── d.rs │ │ │ ├── e.rs │ │ │ └── f.rs │ ├── ABC203 │ │ ├── README.md │ │ └── src │ │ │ ├── a.rs │ │ │ ├── b.rs │ │ │ ├── c.rs │ │ │ ├── d.cpp │ │ │ ├── d.rs │ │ │ ├── e.rs │ │ │ └── f.rs │ ├── ARC060 │ │ └── src │ │ │ └── e.rs │ └── README.md │ ├── codeforces │ ├── 1388 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ └── e.cpp │ ├── 1389 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ └── e.cpp │ ├── 1393 │ │ ├── 0b9d7fa449d6d997137a83d75815bac1.png │ │ ├── README.md │ │ ├── e5420b08d683599c5a505eb1da2eb39b.png │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── d.cpp │ ├── 1394 │ │ └── src │ │ │ ├── c.cpp │ │ │ └── c2.cpp │ ├── 1396 │ │ ├── P3.png │ │ ├── README.md │ │ └── src │ │ │ ├── 2a.py │ │ │ ├── 2b.py │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── e.cpp │ ├── 1398 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ ├── 1399 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── a.hs │ │ │ ├── b.cpp │ │ │ ├── b.hs │ │ │ ├── c.cpp │ │ │ ├── c.hs │ │ │ ├── d.cpp │ │ │ ├── d.hs │ │ │ ├── e1.cpp │ │ │ ├── e2.cpp │ │ │ └── f.cpp │ ├── 1400 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ ├── 1401 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── 1407 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ └── e.cpp │ ├── 1409 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── e.cpp │ │ │ └── f.cpp │ ├── 1437 │ │ ├── README.md │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ ├── 1455 │ │ └── src │ │ │ ├── a.py │ │ │ ├── b.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── e.py │ │ │ ├── f.cpp │ │ │ └── g.cpp │ └── README.md │ ├── kick-start │ ├── 2019C │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b1.cpp │ │ │ ├── b2.cpp │ │ │ └── c.cpp │ ├── 2019D │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ └── c.cpp │ ├── 2019F │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ └── c.cpp │ ├── 2019G │ │ ├── README.md │ │ └── src │ │ │ ├── a1.cpp │ │ │ ├── a2.cpp │ │ │ ├── b.cpp │ │ │ ├── c1.cpp │ │ │ └── c2.cpp │ ├── 2020D │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d1.cpp │ │ │ └── d2.cpp │ ├── 2020E │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── a.py │ │ │ ├── b.cpp │ │ │ ├── b.py │ │ │ ├── c.cpp │ │ │ ├── d1.cpp │ │ │ └── d2.cpp │ ├── 2020F │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── d.cpp │ ├── 2020H │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── c1.cpp │ │ │ ├── c2.cpp │ │ │ └── d.cpp │ ├── 2021A │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── d.cpp │ ├── 2021B │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── c2.cpp │ │ │ └── d.cpp │ ├── 2022A │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── d.cpp │ └── README.md │ ├── leetcode │ ├── 2021-fall-solo │ │ └── README.md │ ├── 2022-spring-cnunionpay │ │ └── README.md │ ├── 2022-spring-solo │ │ └── README.md │ ├── BC28 │ │ └── README.md │ ├── BC29 │ │ └── README.md │ ├── BC30 │ │ └── README.md │ ├── BC31 │ │ └── README.md │ ├── BC32 │ │ └── README.md │ ├── BC33 │ │ └── README.md │ ├── BC34 │ │ └── README.md │ ├── BC35 │ │ └── README.md │ ├── BC36 │ │ └── README.md │ ├── BC37 │ │ └── README.md │ ├── BC38 │ │ └── README.md │ ├── BC39 │ │ └── README.md │ ├── BC40 │ │ └── README.md │ ├── BC41 │ │ └── README.md │ ├── BC42 │ │ └── README.md │ ├── BC43 │ │ └── README.md │ ├── BC44 │ │ └── README.md │ ├── BC45 │ │ └── README.md │ ├── BC46 │ │ └── README.md │ ├── BC47 │ │ └── README.md │ ├── BC48 │ │ └── README.md │ ├── BC49 │ │ └── README.md │ ├── BC50 │ │ └── README.md │ ├── BC51 │ │ └── README.md │ ├── BC52 │ │ └── README.md │ ├── BC53 │ │ └── README.md │ ├── BC54 │ │ └── README.md │ ├── BC55 │ │ └── README.md │ ├── BC56 │ │ └── README.md │ ├── BC57 │ │ └── README.md │ ├── BC58 │ │ └── README.md │ ├── BC59 │ │ └── README.md │ ├── BC60 │ │ └── README.md │ ├── BC61 │ │ └── README.md │ ├── BC62 │ │ └── README.md │ ├── BC63 │ │ └── README.md │ ├── BC64 │ │ └── README.md │ ├── BC65 │ │ └── README.md │ ├── BC66 │ │ └── README.md │ ├── BC67 │ │ └── README.md │ ├── BC68 │ │ └── README.md │ ├── BC69 │ │ └── README.md │ ├── BC70 │ │ └── README.md │ ├── BC71 │ │ └── README.md │ ├── BC72 │ │ └── README.md │ ├── BC73 │ │ └── README.md │ ├── BC74 │ │ └── README.md │ ├── BC75 │ │ └── README.md │ ├── BC76 │ │ └── README.md │ ├── BC77 │ │ └── README.md │ ├── BC78 │ │ └── README.md │ ├── BC79 │ │ └── README.md │ ├── BC80 │ │ └── README.md │ ├── BC81 │ │ └── README.md │ ├── BC82 │ │ └── README.md │ ├── BC83 │ │ └── README.md │ ├── BC84 │ │ └── README.md │ ├── README.md │ ├── WC192 │ │ └── README.md │ ├── WC193 │ │ └── README.md │ ├── WC194 │ │ └── README.md │ ├── WC195 │ │ └── README.md │ ├── WC196 │ │ └── README.md │ ├── WC197 │ │ └── README.md │ ├── WC198 │ │ └── README.md │ ├── WC199 │ │ └── README.md │ ├── WC200 │ │ └── README.md │ ├── WC201 │ │ └── README.md │ ├── WC202 │ │ └── README.md │ ├── WC203 │ │ └── README.md │ ├── WC204 │ │ └── README.md │ ├── WC205 │ │ └── README.md │ ├── WC206 │ │ └── README.md │ ├── WC207 │ │ └── README.md │ ├── WC208 │ │ └── README.md │ ├── WC209 │ │ └── README.md │ ├── WC210 │ │ └── README.md │ ├── WC211 │ │ └── README.md │ ├── WC212 │ │ └── README.md │ ├── WC213 │ │ └── README.md │ ├── WC214 │ │ └── README.md │ ├── WC215 │ │ └── README.md │ ├── WC216 │ │ └── README.md │ ├── WC217 │ │ └── README.md │ ├── WC218 │ │ └── README.md │ ├── WC219 │ │ └── README.md │ ├── WC220 │ │ └── README.md │ ├── WC221 │ │ └── README.md │ ├── WC222 │ │ └── README.md │ ├── WC223 │ │ └── README.md │ ├── WC224 │ │ └── README.md │ ├── WC225 │ │ └── README.md │ ├── WC226 │ │ └── README.md │ ├── WC227 │ │ └── README.md │ ├── WC228 │ │ └── README.md │ ├── WC229 │ │ └── README.md │ ├── WC230 │ │ └── README.md │ ├── WC231 │ │ └── README.md │ ├── WC232 │ │ └── README.md │ ├── WC233 │ │ └── README.md │ ├── WC234 │ │ └── README.md │ ├── WC235 │ │ └── README.md │ ├── WC236 │ │ └── README.md │ ├── WC237 │ │ └── README.md │ ├── WC238 │ │ └── README.md │ ├── WC239 │ │ └── README.md │ ├── WC240 │ │ └── README.md │ ├── WC241 │ │ └── README.md │ ├── WC242 │ │ └── README.md │ ├── WC243 │ │ └── README.md │ ├── WC244 │ │ └── README.md │ ├── WC245 │ │ └── README.md │ ├── WC246 │ │ └── README.md │ ├── WC247 │ │ └── README.md │ ├── WC248 │ │ └── README.md │ ├── WC249 │ │ └── README.md │ ├── WC250 │ │ └── README.md │ ├── WC251 │ │ └── README.md │ ├── WC252 │ │ └── README.md │ ├── WC253 │ │ └── README.md │ ├── WC254 │ │ └── README.md │ ├── WC255 │ │ └── README.md │ ├── WC256 │ │ └── README.md │ ├── WC257 │ │ └── README.md │ ├── WC258 │ │ └── README.md │ ├── WC259 │ │ └── README.md │ ├── WC260 │ │ └── README.md │ ├── WC261 │ │ └── README.md │ ├── WC262 │ │ └── README.md │ ├── WC263 │ │ └── README.md │ ├── WC264 │ │ └── README.md │ ├── WC265 │ │ └── README.md │ ├── WC266 │ │ └── README.md │ ├── WC267 │ │ └── README.md │ ├── WC268 │ │ └── README.md │ ├── WC269 │ │ └── README.md │ ├── WC270 │ │ └── README.md │ ├── WC271 │ │ └── README.md │ ├── WC272 │ │ └── README.md │ ├── WC273 │ │ └── README.md │ ├── WC274 │ │ └── README.md │ ├── WC275 │ │ └── README.md │ ├── WC276 │ │ └── README.md │ ├── WC277 │ │ └── README.md │ ├── WC278 │ │ └── README.md │ ├── WC279 │ │ └── README.md │ ├── WC280 │ │ └── README.md │ ├── WC281 │ │ └── README.md │ ├── WC282 │ │ └── README.md │ ├── WC283 │ │ └── README.md │ ├── WC284 │ │ └── README.md │ ├── WC285 │ │ └── README.md │ ├── WC286 │ │ └── README.md │ ├── WC287 │ │ └── README.md │ ├── WC288 │ │ └── README.md │ ├── WC289 │ │ └── README.md │ ├── WC290 │ │ └── README.md │ ├── WC291 │ │ └── README.md │ ├── WC292 │ │ └── README.md │ ├── WC293 │ │ └── README.md │ ├── WC294 │ │ └── README.md │ ├── WC295 │ │ └── README.md │ ├── WC296 │ │ └── README.md │ ├── WC297 │ │ └── README.md │ ├── WC298 │ │ └── README.md │ ├── WC299 │ │ └── README.md │ ├── WC300 │ │ └── README.md │ ├── WC301 │ │ └── README.md │ ├── WC302 │ │ └── README.md │ ├── WC303 │ │ └── README.md │ └── WC329 │ │ └── README.md │ ├── others │ ├── HC2020-R2 │ │ ├── P3.png │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ └── c.cpp │ ├── README.md │ ├── SNSS2020-R1 │ │ ├── README.md │ │ └── src │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ └── c.cpp │ └── SNSS2020-R2 │ │ ├── README.md │ │ └── src │ │ ├── b.cpp │ │ ├── d.cpp │ │ └── e.cpp │ └── project-euler │ └── README.md ├── package.json ├── renovate.json ├── scripts └── create-blog.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /.yarn/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.3.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/.yarn/releases/yarn-3.3.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vuepress/components/BlogList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/components/BlogList.vue -------------------------------------------------------------------------------- /docs/.vuepress/components/Utterances.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/components/Utterances.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /docs/.vuepress/nav/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/nav/en.js -------------------------------------------------------------------------------- /docs/.vuepress/nav/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/nav/zh.js -------------------------------------------------------------------------------- /docs/.vuepress/plugins/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/plugins/robots.js -------------------------------------------------------------------------------- /docs/.vuepress/public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-2391425047778930, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/public/problem.png -------------------------------------------------------------------------------- /docs/.vuepress/sidebar/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/sidebar/en.js -------------------------------------------------------------------------------- /docs/.vuepress/sidebar/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/sidebar/zh.js -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/.vuepress/templates/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/templates/dev.html -------------------------------------------------------------------------------- /docs/.vuepress/templates/ssr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/templates/ssr.html -------------------------------------------------------------------------------- /docs/.vuepress/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/.vuepress/utils/index.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_blogs/2020-09-03-plug-the-blog-plugin-into-vuepress-default-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/_blogs/2020-09-03-plug-the-blog-plugin-into-vuepress-default-theme.md -------------------------------------------------------------------------------- /docs/_blogs/2020-09-05-shortcut-for-blog-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/_blogs/2020-09-05-shortcut-for-blog-creation.md -------------------------------------------------------------------------------- /docs/_blogs/2020-09-10-gmt-zhong-wen-zhi-chi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/_blogs/2020-09-10-gmt-zhong-wen-zhi-chi.md -------------------------------------------------------------------------------- /docs/ad-hoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/ad-hoc/README.md -------------------------------------------------------------------------------- /docs/ad-hoc/src/Kattis-jugglingpatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/ad-hoc/src/Kattis-jugglingpatterns.py -------------------------------------------------------------------------------- /docs/algebra/README.md: -------------------------------------------------------------------------------- 1 | # 关于代数 2 | 3 | 代数类的题目往往需要我们有一定的相关知识储备,重在平时的积累。 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/algebra/binary-exponentiation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/binary-exponentiation/README.md -------------------------------------------------------------------------------- /docs/algebra/binary-exponentiation/src/LG-P1226-Iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/binary-exponentiation/src/LG-P1226-Iteration.cpp -------------------------------------------------------------------------------- /docs/algebra/binary-exponentiation/src/LG-P1226-Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/binary-exponentiation/src/LG-P1226-Recursion.cpp -------------------------------------------------------------------------------- /docs/algebra/catalan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/catalan/README.md -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/README.md -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/src/LG-P3803-Iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/src/LG-P3803-Iteration.cpp -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/src/LG-P3803-Iteration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/src/LG-P3803-Iteration.kt -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/src/LG-P3803-Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/src/LG-P3803-Recursion.cpp -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/src/SPOJ-ADAMATCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/src/SPOJ-ADAMATCH.cpp -------------------------------------------------------------------------------- /docs/algebra/fast-fourier-transform/src/SPOJ-TSUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/algebra/fast-fourier-transform/src/SPOJ-TSUM.cpp -------------------------------------------------------------------------------- /docs/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/README.md -------------------------------------------------------------------------------- /docs/basic/binary-search/CF1394C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/binary-search/CF1394C.png -------------------------------------------------------------------------------- /docs/basic/binary-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/binary-search/README.md -------------------------------------------------------------------------------- /docs/basic/binary-search/src/SPOJ-AGGRCOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/binary-search/src/SPOJ-AGGRCOW.cpp -------------------------------------------------------------------------------- /docs/basic/breadth-first-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/breadth-first-search/README.md -------------------------------------------------------------------------------- /docs/basic/enumerate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/enumerate/README.md -------------------------------------------------------------------------------- /docs/basic/invariant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/invariant/README.md -------------------------------------------------------------------------------- /docs/basic/small-to-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/small-to-large/README.md -------------------------------------------------------------------------------- /docs/basic/sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/sorting/README.md -------------------------------------------------------------------------------- /docs/basic/ternary-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/basic/ternary-search/README.md -------------------------------------------------------------------------------- /docs/blog/README.md: -------------------------------------------------------------------------------- 1 | # lucifer1004的博客 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/combinatorics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/combinatorics/README.md -------------------------------------------------------------------------------- /docs/combinatorics/inclusion-exclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/combinatorics/inclusion-exclusion/README.md -------------------------------------------------------------------------------- /docs/combinatorics/miscellaneous/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/combinatorics/miscellaneous/README.md -------------------------------------------------------------------------------- /docs/data-structure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/README.md -------------------------------------------------------------------------------- /docs/data-structure/balanced-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/balanced-binary-search-tree/README.md -------------------------------------------------------------------------------- /docs/data-structure/disjoint-sets-union/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/disjoint-sets-union/README.md -------------------------------------------------------------------------------- /docs/data-structure/queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/queue/README.md -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/README.md -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/segment-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/segment-tree.png -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/src/CF-EDU-ST-P1-S1B.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/src/CF-EDU-ST-P1-S1B.kt -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/src/LG-P3372-Normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/src/LG-P3372-Normal.cpp -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/src/LG-P3372-Persistent-Tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/src/LG-P3372-Persistent-Tag.cpp -------------------------------------------------------------------------------- /docs/data-structure/segment-tree/src/SPOJ-GSS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/segment-tree/src/SPOJ-GSS1.cpp -------------------------------------------------------------------------------- /docs/data-structure/stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/data-structure/stack/README.md -------------------------------------------------------------------------------- /docs/dynamic-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/dynamic-programming/README.md -------------------------------------------------------------------------------- /docs/dynamic-programming/bitmask-dp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/dynamic-programming/bitmask-dp/README.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/ad-hoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/ad-hoc/README.md -------------------------------------------------------------------------------- /docs/en/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/blog/README.md -------------------------------------------------------------------------------- /docs/en/dynamic-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/dynamic-programming/README.md -------------------------------------------------------------------------------- /docs/en/hall-of-fame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/hall-of-fame/README.md -------------------------------------------------------------------------------- /docs/en/jargon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/jargon/README.md -------------------------------------------------------------------------------- /docs/en/string/aho-corasick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/string/aho-corasick/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2015/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2015 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2016/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2016 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2017/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2017 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2018/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2018 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2019/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2019 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2020/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2020 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/advent-of-code/2021/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/advent-of-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/advent-of-code/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC174/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC174/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC175/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC175/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC176/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC176/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC177/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC177/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC178/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC178/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC179/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC179/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC182/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC182/F.png -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC182/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC182/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC183/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC183/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC184/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC184/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC185/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC185/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC186/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC186/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC187/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC187/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC188/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC188/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC189/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC189/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC190/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC190/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC191/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC191/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC195/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/ABC203/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/ABC203/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/atcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/atcoder/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1388/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1388/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1389/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1389/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1393/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1393/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1396/P3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1396/P3.png -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1396/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1396/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1398/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1398/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1399/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1399/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1400/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1400/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1401/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1401/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1407/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1407/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1409/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1409/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/1437/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/1437/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/codeforces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/codeforces/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2019C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2019C/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2019D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2019D/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2019F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2019F/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2019G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2019G/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2020D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2020D/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2020E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2020E/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2020F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2020F/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2020H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2020H/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2021A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2021A/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2021B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2021B/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/2022A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/2022A/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/kick-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/kick-start/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/leetcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/leetcode/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/others/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/project-euler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/project-euler/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/002/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/src/002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/002/src/002.cpp -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/src/ans1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/src/ans2.txt: -------------------------------------------------------------------------------- 1 | 112615 2 | -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/src/in1.txt: -------------------------------------------------------------------------------- 1 | 3 10 2 | AND 5 3 | OR 6 4 | XOR 7 5 | -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/002/src/in2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/002/src/in2.txt -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/003/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/005/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/src/005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/005/src/005.cpp -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/src/ans1.txt: -------------------------------------------------------------------------------- 1 | 36 2 | 1 3 | 32 4 | -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/src/ans2.txt: -------------------------------------------------------------------------------- 1 | 122322007 2 | 677058547 3 | -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/src/in1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/005/src/in1.txt -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/005/src/in2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/005/src/in2.txt -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/Register_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/Register_1.png -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/Register_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/Register_2.png -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/Register_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/Register_3.png -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/Submit_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/Submit_1.png -------------------------------------------------------------------------------- /docs/en/tutorial/uoj/Submit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/en/tutorial/uoj/Submit_2.png -------------------------------------------------------------------------------- /docs/geometry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/geometry/README.md -------------------------------------------------------------------------------- /docs/geometry/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/geometry/basic/README.md -------------------------------------------------------------------------------- /docs/graph-theory/README.md: -------------------------------------------------------------------------------- 1 | # 关于图论 2 | 3 | 图论是CP中的重点考察内容,主要涉及树和图的相关算法。 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/graph-theory/bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/graph-theory/bridge/README.md -------------------------------------------------------------------------------- /docs/graph-theory/scc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/graph-theory/scc/README.md -------------------------------------------------------------------------------- /docs/hall-of-fame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/hall-of-fame/README.md -------------------------------------------------------------------------------- /docs/jargon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/jargon/README.md -------------------------------------------------------------------------------- /docs/miscellaneous/README.md: -------------------------------------------------------------------------------- 1 | # 杂项 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/miscellaneous/sprague-grundy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/miscellaneous/sprague-grundy/README.md -------------------------------------------------------------------------------- /docs/string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/string/README.md -------------------------------------------------------------------------------- /docs/string/aho-corasick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/string/aho-corasick/README.md -------------------------------------------------------------------------------- /docs/string/aho-corasick/src/CF1400F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/string/aho-corasick/src/CF1400F.cpp -------------------------------------------------------------------------------- /docs/string/aho-corasick/src/SPOJ-ADAJOBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/string/aho-corasick/src/SPOJ-ADAJOBS.cpp -------------------------------------------------------------------------------- /docs/string/prefix-function/README.md: -------------------------------------------------------------------------------- 1 | # 前缀函数 2 | -------------------------------------------------------------------------------- /docs/string/trie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/string/trie/README.md -------------------------------------------------------------------------------- /docs/tips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tips/README.md -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2015/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2015 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2016/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2016 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2017/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2017 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2018/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2018 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2019/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2019 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2020/README.md: -------------------------------------------------------------------------------- 1 | # Advent of Code 2020 2 | -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/advent-of-code/2021/README.md -------------------------------------------------------------------------------- /docs/tutorial/advent-of-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/advent-of-code/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC174/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC174/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC174/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC174/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC174/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC174/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC175/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC175/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC175/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC175/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC175/src/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC175/src/d2.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC175/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC175/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC175/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC175/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/b.py: -------------------------------------------------------------------------------- 1 | print('Yes' if sum(map(int, input())) % 9 == 0 else 'No') 2 | -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC176/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC176/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC177/src/f2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC177/src/f2.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/d.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC178/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC178/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC179/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC179/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC182/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC182/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC183/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC183/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC184/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC184/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/d.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/e.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC185/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC185/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/d.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/e.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC186/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC186/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC187/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC187/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/d2.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC188/src/f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC188/src/f.py -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/a.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/b.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/c.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/d.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC189/src/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC189/src/f.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/a.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/b.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/c.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/d.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC190/src/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC190/src/f.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/a.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/b.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/c.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/d.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC191/src/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC191/src/f.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/a.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/b.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/c.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/d.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC195/src/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC195/src/f.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/README.md -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/a.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/a.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/b.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/c.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/d.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ABC203/src/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ABC203/src/f.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/ARC060/src/e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/ARC060/src/e.rs -------------------------------------------------------------------------------- /docs/tutorial/atcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/atcoder/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1388/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1388/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1389/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1389/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/0b9d7fa449d6d997137a83d75815bac1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/0b9d7fa449d6d997137a83d75815bac1.png -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/e5420b08d683599c5a505eb1da2eb39b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/e5420b08d683599c5a505eb1da2eb39b.png -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1393/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1393/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1394/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1394/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1394/src/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1394/src/c2.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/P3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/P3.png -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/2a.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/2b.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1396/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1396/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1398/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1398/src/g.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/a.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/a.hs -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/b.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/b.hs -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/c.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/c.hs -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/d.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/d.hs -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/e1.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/e2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/e2.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1399/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1399/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1400/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1400/src/g.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1401/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1401/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1407/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1407/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/d.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1409/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1409/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/README.md -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1437/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1437/src/g.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/c.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/d.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/e.py -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/f.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/1455/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/1455/src/g.cpp -------------------------------------------------------------------------------- /docs/tutorial/codeforces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/codeforces/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019C/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019C/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019C/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019C/src/b1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019C/src/b1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019C/src/b2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019C/src/b2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019C/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019C/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019D/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019D/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019D/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019D/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019D/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019D/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019D/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019F/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019F/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019F/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019F/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019F/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019F/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019F/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/src/a1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/src/a1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/src/a2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/src/a2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/src/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/src/c1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2019G/src/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2019G/src/c2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/README.md: -------------------------------------------------------------------------------- 1 | # Google Kick Start 2020 Round D 题解 2 | 3 | 目前只有[英文版](/en/tutorial/kick-start/2020D)。 4 | -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020D/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020D/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020D/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/src/d1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020D/src/d1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020D/src/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020D/src/d2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/a.py -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/b.py -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/d1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/d1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020E/src/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020E/src/d2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020F/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020F/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020F/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020F/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020F/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020F/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020F/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020F/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020F/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/c1.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/c2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2020H/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2020H/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021A/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021A/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021A/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021A/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021A/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021A/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021A/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021A/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021A/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/src/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/src/c2.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2021B/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2021B/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2022A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2022A/README.md -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2022A/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2022A/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2022A/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2022A/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2022A/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2022A/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/2022A/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/2022A/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/kick-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/kick-start/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/2021-fall-solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/2021-fall-solo/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/2022-spring-cnunionpay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/2022-spring-cnunionpay/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/2022-spring-solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/2022-spring-solo/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC28/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC29/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC29/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC30/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC31/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC32/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC33/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC34/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC35/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC36/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC36/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC37/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC37/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC38/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC38/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC39/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC39/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC40/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC41/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC41/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC42/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC43/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC43/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC44/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC44/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC45/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC45/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC46/README.md: -------------------------------------------------------------------------------- 1 | # Leetcode 第46场双周赛题解(待补) 2 | -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC47/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC47/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC48/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC48/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC49/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC49/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC50/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC50/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC51/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC52/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC52/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC53/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC54/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC54/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC55/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC56/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC57/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC57/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC58/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC58/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC59/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC59/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC60/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC60/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC61/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC61/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC62/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC62/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC63/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC63/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC64/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC65/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC65/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC66/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC66/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC67/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC67/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC68/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC68/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC69/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC69/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC70/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC70/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC71/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC71/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC72/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC73/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC73/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC74/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC74/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC75/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC75/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC76/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC76/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC77/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC77/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC78/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC78/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC79/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC79/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC80/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC81/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC81/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC82/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC82/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC83/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC83/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/BC84/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/BC84/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC192/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC193/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC193/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC194/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC194/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC195/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC196/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC196/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC197/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC197/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC198/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC198/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC199/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC199/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC200/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC201/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC201/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC202/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC202/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC203/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC203/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC204/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC205/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC205/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC206/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC206/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC207/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC207/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC208/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC208/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC209/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC209/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC210/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC210/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC211/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC211/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC212/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC212/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC213/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC213/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC214/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC214/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC215/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC215/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC216/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC216/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC217/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC217/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC218/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC218/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC219/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC220/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC220/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC221/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC221/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC222/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC222/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC223/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC223/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC224/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC224/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC225/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC225/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC226/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC226/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC227/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC227/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC228/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC228/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC229/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC229/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC230/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC230/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC231/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC232/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC232/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC233/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC233/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC234/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC234/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC235/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC235/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC236/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC236/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC237/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC237/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC238/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC238/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC239/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC239/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC240/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC240/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC241/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC241/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC242/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC242/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC243/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC243/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC244/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC244/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC245/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC245/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC246/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC246/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC247/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC247/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC248/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC248/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC249/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC249/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC250/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC250/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC251/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC251/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC252/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC252/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC253/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC253/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC254/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC254/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC255/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC255/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC256/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC257/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC257/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC258/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC258/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC259/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC259/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC260/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC260/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC261/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC261/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC262/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC262/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC263/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC263/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC264/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC264/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC265/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC265/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC266/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC267/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC267/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC268/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC268/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC269/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC269/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC270/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC270/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC271/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC271/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC272/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC272/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC273/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC273/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC274/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC274/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC275/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC275/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC276/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC276/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC277/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC277/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC278/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC278/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC279/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC279/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC280/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC281/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC281/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC282/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC282/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC283/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC283/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC284/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC284/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC285/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC285/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC286/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC286/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC287/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC287/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC288/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC288/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC289/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC289/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC290/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC290/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC291/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC291/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC292/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC292/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC293/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC293/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC294/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC294/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC295/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC295/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC296/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC296/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC297/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC297/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC298/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC298/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC299/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC299/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC300/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC300/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC301/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC301/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC302/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC302/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC303/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC303/README.md -------------------------------------------------------------------------------- /docs/tutorial/leetcode/WC329/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/leetcode/WC329/README.md -------------------------------------------------------------------------------- /docs/tutorial/others/HC2020-R2/P3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/HC2020-R2/P3.png -------------------------------------------------------------------------------- /docs/tutorial/others/HC2020-R2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/HC2020-R2/README.md -------------------------------------------------------------------------------- /docs/tutorial/others/HC2020-R2/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/HC2020-R2/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/HC2020-R2/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/HC2020-R2/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/README.md -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R1/README.md -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R1/src/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R1/src/a.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R1/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R1/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R1/src/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R1/src/c.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R2/README.md -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R2/src/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R2/src/b.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R2/src/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R2/src/d.cpp -------------------------------------------------------------------------------- /docs/tutorial/others/SNSS2020-R2/src/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/others/SNSS2020-R2/src/e.cpp -------------------------------------------------------------------------------- /docs/tutorial/project-euler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/docs/tutorial/project-euler/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/create-blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/scripts/create-blog.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifer1004/cp-wiki/HEAD/yarn.lock --------------------------------------------------------------------------------