├── LICENSE ├── README.md ├── atcoder ├── ahc011 │ ├── approach.md │ └── main.cpp ├── ahc012 │ ├── approach.md │ └── main.cpp ├── ahc017 │ ├── approach.md │ └── main.cpp ├── ahc018 │ ├── approach.md │ ├── main.cpp │ └── main_19.cpp ├── ahc020 │ ├── approach.md │ └── main.cpp ├── ahc030 │ └── main.cpp ├── ahc031 │ └── main.cpp ├── ahc032 │ ├── main.cpp │ └── main_postcontest.cpp ├── ahc034 │ ├── approach.md │ ├── main.cpp │ └── main_postcontest.cpp ├── ahc036 │ ├── approach.md │ └── main.cpp ├── ahc038 │ ├── approach.md │ ├── main.cpp │ └── postcontest.cpp ├── ahc039 │ ├── approach.md │ └── main.cpp ├── ahc040 │ ├── approach.md │ └── main.cpp ├── ahc043 │ ├── approach.md │ ├── main.cpp │ └── main_postcontest.cpp └── awtf2025 │ ├── approach.md │ ├── humansvsai.md │ ├── main.cpp │ └── notes.jpg ├── random ├── ch24_2013.pdf └── template_compressed.cpp ├── topcoder ├── mm117 │ ├── RotatingNumbers.cpp │ └── approach.txt ├── mm118 │ ├── DanceFloor.cpp │ └── approach.txt ├── mm131 │ ├── StopTheElves.cpp │ └── approach.txt ├── mm136 │ ├── HungryKnights.cpp │ ├── HungryKnights_submit10.cpp │ └── approach.md ├── mm137 │ ├── StoneSeries.cpp │ └── approach.md ├── mm138 │ ├── DiceRoller.cpp │ ├── DiceRoller_post.cpp │ └── approach.md ├── mm139 │ ├── PipeConnector.cpp │ └── approach.md ├── mm142 │ ├── HelpTheElves.cpp │ └── approach.md ├── mm143 │ ├── TreeMaker.cpp │ ├── approach.md │ └── seed1665.gif ├── mm144 │ ├── Flood.cpp │ └── approach.md ├── mm146 │ ├── HappyGrid.cpp │ └── approach.md ├── mm74 │ └── AntiTravelingSalesperson.cpp ├── tco10r2 │ └── CellularAutomaton.cpp ├── tco10r3 │ └── SubgraphIsomorphism.cpp ├── tco11finals │ └── OptimalScheduling.cpp ├── tco11r2 │ └── QualityPolygons.cpp ├── tco11r3 │ └── StringCompression.cpp ├── tco12r1 │ └── BlackAndWhiteGame.cpp ├── tco20finals │ └── TastyPizza.cpp ├── tco21finals │ └── CoinCollector.cpp └── tco22finals │ ├── BlockGame.cpp │ └── approach.md └── various ├── algotester_2023_hot_r3 └── main.cpp ├── algotester_bookmap ├── approach.md ├── main.cpp └── problem_statement.pdf ├── cf_huawei_2022_1 ├── approach.md └── main.cpp ├── cf_huawei_2022_2 ├── approach.md ├── main.cpp └── results.txt ├── cf_huawei_2023 ├── approach.md ├── main.cpp ├── provisional.csv └── results.txt ├── cg_fc_2023 └── approach.md ├── codeweekend_1 ├── approach.md └── main.cpp ├── icfp2023 ├── cli.py ├── json.hpp ├── main.cpp ├── readme.md ├── scores.txt └── specification.pdf └── reply2022 ├── comment.txt └── main.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/README.md -------------------------------------------------------------------------------- /atcoder/ahc011/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc011/approach.md -------------------------------------------------------------------------------- /atcoder/ahc011/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc011/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc012/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc012/approach.md -------------------------------------------------------------------------------- /atcoder/ahc012/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc012/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc017/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc017/approach.md -------------------------------------------------------------------------------- /atcoder/ahc017/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc017/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc018/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc018/approach.md -------------------------------------------------------------------------------- /atcoder/ahc018/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc018/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc018/main_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc018/main_19.cpp -------------------------------------------------------------------------------- /atcoder/ahc020/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc020/approach.md -------------------------------------------------------------------------------- /atcoder/ahc020/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc020/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc030/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc030/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc031/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc031/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc032/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc032/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc032/main_postcontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc032/main_postcontest.cpp -------------------------------------------------------------------------------- /atcoder/ahc034/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc034/approach.md -------------------------------------------------------------------------------- /atcoder/ahc034/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc034/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc034/main_postcontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc034/main_postcontest.cpp -------------------------------------------------------------------------------- /atcoder/ahc036/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc036/approach.md -------------------------------------------------------------------------------- /atcoder/ahc036/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc036/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc038/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc038/approach.md -------------------------------------------------------------------------------- /atcoder/ahc038/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc038/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc038/postcontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc038/postcontest.cpp -------------------------------------------------------------------------------- /atcoder/ahc039/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc039/approach.md -------------------------------------------------------------------------------- /atcoder/ahc039/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc039/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc040/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc040/approach.md -------------------------------------------------------------------------------- /atcoder/ahc040/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc040/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc043/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc043/approach.md -------------------------------------------------------------------------------- /atcoder/ahc043/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc043/main.cpp -------------------------------------------------------------------------------- /atcoder/ahc043/main_postcontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/ahc043/main_postcontest.cpp -------------------------------------------------------------------------------- /atcoder/awtf2025/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/awtf2025/approach.md -------------------------------------------------------------------------------- /atcoder/awtf2025/humansvsai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/awtf2025/humansvsai.md -------------------------------------------------------------------------------- /atcoder/awtf2025/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/awtf2025/main.cpp -------------------------------------------------------------------------------- /atcoder/awtf2025/notes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/atcoder/awtf2025/notes.jpg -------------------------------------------------------------------------------- /random/ch24_2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/random/ch24_2013.pdf -------------------------------------------------------------------------------- /random/template_compressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/random/template_compressed.cpp -------------------------------------------------------------------------------- /topcoder/mm117/RotatingNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm117/RotatingNumbers.cpp -------------------------------------------------------------------------------- /topcoder/mm117/approach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm117/approach.txt -------------------------------------------------------------------------------- /topcoder/mm118/DanceFloor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm118/DanceFloor.cpp -------------------------------------------------------------------------------- /topcoder/mm118/approach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm118/approach.txt -------------------------------------------------------------------------------- /topcoder/mm131/StopTheElves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm131/StopTheElves.cpp -------------------------------------------------------------------------------- /topcoder/mm131/approach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm131/approach.txt -------------------------------------------------------------------------------- /topcoder/mm136/HungryKnights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm136/HungryKnights.cpp -------------------------------------------------------------------------------- /topcoder/mm136/HungryKnights_submit10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm136/HungryKnights_submit10.cpp -------------------------------------------------------------------------------- /topcoder/mm136/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm136/approach.md -------------------------------------------------------------------------------- /topcoder/mm137/StoneSeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm137/StoneSeries.cpp -------------------------------------------------------------------------------- /topcoder/mm137/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm137/approach.md -------------------------------------------------------------------------------- /topcoder/mm138/DiceRoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm138/DiceRoller.cpp -------------------------------------------------------------------------------- /topcoder/mm138/DiceRoller_post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm138/DiceRoller_post.cpp -------------------------------------------------------------------------------- /topcoder/mm138/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm138/approach.md -------------------------------------------------------------------------------- /topcoder/mm139/PipeConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm139/PipeConnector.cpp -------------------------------------------------------------------------------- /topcoder/mm139/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm139/approach.md -------------------------------------------------------------------------------- /topcoder/mm142/HelpTheElves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm142/HelpTheElves.cpp -------------------------------------------------------------------------------- /topcoder/mm142/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm142/approach.md -------------------------------------------------------------------------------- /topcoder/mm143/TreeMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm143/TreeMaker.cpp -------------------------------------------------------------------------------- /topcoder/mm143/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm143/approach.md -------------------------------------------------------------------------------- /topcoder/mm143/seed1665.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm143/seed1665.gif -------------------------------------------------------------------------------- /topcoder/mm144/Flood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm144/Flood.cpp -------------------------------------------------------------------------------- /topcoder/mm144/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm144/approach.md -------------------------------------------------------------------------------- /topcoder/mm146/HappyGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm146/HappyGrid.cpp -------------------------------------------------------------------------------- /topcoder/mm146/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm146/approach.md -------------------------------------------------------------------------------- /topcoder/mm74/AntiTravelingSalesperson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/mm74/AntiTravelingSalesperson.cpp -------------------------------------------------------------------------------- /topcoder/tco10r2/CellularAutomaton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco10r2/CellularAutomaton.cpp -------------------------------------------------------------------------------- /topcoder/tco10r3/SubgraphIsomorphism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco10r3/SubgraphIsomorphism.cpp -------------------------------------------------------------------------------- /topcoder/tco11finals/OptimalScheduling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco11finals/OptimalScheduling.cpp -------------------------------------------------------------------------------- /topcoder/tco11r2/QualityPolygons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco11r2/QualityPolygons.cpp -------------------------------------------------------------------------------- /topcoder/tco11r3/StringCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco11r3/StringCompression.cpp -------------------------------------------------------------------------------- /topcoder/tco12r1/BlackAndWhiteGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco12r1/BlackAndWhiteGame.cpp -------------------------------------------------------------------------------- /topcoder/tco20finals/TastyPizza.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco20finals/TastyPizza.cpp -------------------------------------------------------------------------------- /topcoder/tco21finals/CoinCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco21finals/CoinCollector.cpp -------------------------------------------------------------------------------- /topcoder/tco22finals/BlockGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco22finals/BlockGame.cpp -------------------------------------------------------------------------------- /topcoder/tco22finals/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/topcoder/tco22finals/approach.md -------------------------------------------------------------------------------- /various/algotester_2023_hot_r3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/algotester_2023_hot_r3/main.cpp -------------------------------------------------------------------------------- /various/algotester_bookmap/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/algotester_bookmap/approach.md -------------------------------------------------------------------------------- /various/algotester_bookmap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/algotester_bookmap/main.cpp -------------------------------------------------------------------------------- /various/algotester_bookmap/problem_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/algotester_bookmap/problem_statement.pdf -------------------------------------------------------------------------------- /various/cf_huawei_2022_1/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2022_1/approach.md -------------------------------------------------------------------------------- /various/cf_huawei_2022_1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2022_1/main.cpp -------------------------------------------------------------------------------- /various/cf_huawei_2022_2/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2022_2/approach.md -------------------------------------------------------------------------------- /various/cf_huawei_2022_2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2022_2/main.cpp -------------------------------------------------------------------------------- /various/cf_huawei_2022_2/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2022_2/results.txt -------------------------------------------------------------------------------- /various/cf_huawei_2023/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2023/approach.md -------------------------------------------------------------------------------- /various/cf_huawei_2023/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2023/main.cpp -------------------------------------------------------------------------------- /various/cf_huawei_2023/provisional.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2023/provisional.csv -------------------------------------------------------------------------------- /various/cf_huawei_2023/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cf_huawei_2023/results.txt -------------------------------------------------------------------------------- /various/cg_fc_2023/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/cg_fc_2023/approach.md -------------------------------------------------------------------------------- /various/codeweekend_1/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/codeweekend_1/approach.md -------------------------------------------------------------------------------- /various/codeweekend_1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/codeweekend_1/main.cpp -------------------------------------------------------------------------------- /various/icfp2023/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/cli.py -------------------------------------------------------------------------------- /various/icfp2023/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/json.hpp -------------------------------------------------------------------------------- /various/icfp2023/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/main.cpp -------------------------------------------------------------------------------- /various/icfp2023/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/readme.md -------------------------------------------------------------------------------- /various/icfp2023/scores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/scores.txt -------------------------------------------------------------------------------- /various/icfp2023/specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/icfp2023/specification.pdf -------------------------------------------------------------------------------- /various/reply2022/comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/reply2022/comment.txt -------------------------------------------------------------------------------- /various/reply2022/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FakePsyho/cpcontests/HEAD/various/reply2022/main.cpp --------------------------------------------------------------------------------