├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── deploy.yml │ └── lint.yml ├── .gitignore ├── .markdownlint.json ├── .remarkrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── board │ ├── data-format.md │ └── index.md ├── code-library │ ├── code-library-build.md │ ├── code-library-list.md │ ├── images │ │ ├── actions-permissions.png │ │ └── enable-actions.png │ └── index.md ├── css │ └── extra.css ├── index.md ├── info │ ├── calendar.md │ ├── ccpc │ │ ├── 5th │ │ │ ├── final.md │ │ │ └── harbin.md │ │ ├── 6th │ │ │ ├── changchun.md │ │ │ ├── final.md │ │ │ ├── index.md │ │ │ ├── mianyang.md │ │ │ ├── preliminary-contest.md │ │ │ ├── qinhuangdao.md │ │ │ ├── weihai.md │ │ │ └── wfinal.md │ │ ├── 7th │ │ │ ├── girl.md │ │ │ ├── guangzhou.md │ │ │ ├── guilin.md │ │ │ ├── harbin.md │ │ │ ├── index.md │ │ │ ├── preliminary-contest.md │ │ │ └── weihai.md │ │ ├── 8th │ │ │ ├── final.md │ │ │ ├── gaozhi.md │ │ │ ├── girl.md │ │ │ ├── guangzhou.md │ │ │ ├── guilin.md │ │ │ ├── index.md │ │ │ ├── mianyang.md │ │ │ ├── preliminary-contest.md │ │ │ └── weihai.md │ │ ├── 9th │ │ │ └── index.md │ │ └── index.md │ ├── icpc │ │ ├── 2015 │ │ │ ├── beijing.md │ │ │ └── ecfinal.md │ │ ├── 2017 │ │ │ └── world-finals.md │ │ ├── 2018 │ │ │ ├── tingdao.md │ │ │ └── world-finals.md │ │ ├── 2019 │ │ │ ├── ec-final.md │ │ │ ├── hongkong.md │ │ │ ├── world-finals.md │ │ │ └── yinchuan │ │ ├── 2020 │ │ │ ├── ec.md │ │ │ ├── index.md │ │ │ ├── jinan.md │ │ │ ├── kunming.md │ │ │ ├── macau.md │ │ │ ├── nanjing.md │ │ │ ├── nowcoder-xiaomi.md │ │ │ ├── shanghai.md │ │ │ ├── shenyang.md │ │ │ ├── world-finals.md │ │ │ └── yinchuan.md │ │ ├── 46th │ │ │ ├── ec.md │ │ │ ├── index.md │ │ │ ├── jinan.md │ │ │ ├── kunming.md │ │ │ ├── macau.md │ │ │ ├── nanjing.md │ │ │ ├── online.md │ │ │ ├── shanghai.md │ │ │ └── shenyang.md │ │ ├── 47th │ │ │ ├── ec.md │ │ │ ├── hangzhou.md │ │ │ ├── hefei.md │ │ │ ├── hongkong.md │ │ │ ├── index.md │ │ │ ├── jinan.md │ │ │ ├── nanjing.md │ │ │ ├── online.md │ │ │ ├── shenyang.md │ │ │ └── xian.md │ │ ├── 48th │ │ │ └── index.md │ │ ├── 49th │ │ │ ├── index.md │ │ │ ├── kunming.md │ │ │ ├── wuhan.md │ │ │ └── xian.md │ │ ├── images │ │ │ └── icpcid.png │ │ └── index.md │ ├── images │ │ └── bytecamp-2022-banner.png │ ├── jobs │ │ └── metabit-trading │ │ │ ├── images │ │ │ ├── metabit_jobs_20240331.png │ │ │ ├── metabit_jobs_20250413.jpg │ │ │ └── metabit_jobs_20250515.png │ │ │ └── index.md │ ├── news.md │ ├── provincial-contest │ │ ├── 2017 │ │ │ └── zjcpc.md │ │ ├── 2018 │ │ │ └── zjcpc.md │ │ ├── 2019 │ │ │ ├── jscpc.md │ │ │ ├── sccpc.md │ │ │ ├── sdcpc.md │ │ │ ├── sxcpc.md │ │ │ └── zjcpc.md │ │ ├── 2020 │ │ │ ├── henancpc.md │ │ │ ├── jiangsucpc.md │ │ │ ├── jiangxicpc.md │ │ │ └── zjcpc.md │ │ ├── 2021 │ │ │ ├── .gitkeep │ │ │ ├── jiangxi.md │ │ │ └── zjcpc.md │ │ ├── 2022 │ │ │ ├── hbcpc.md │ │ │ └── zjcpc.md │ │ ├── 2023 │ │ │ └── sccpc.md │ │ └── 2024 │ │ │ └── jiangsu.md │ └── sponsors │ │ ├── hznu-coder │ │ ├── images │ │ │ └── hznu-coder-wechat.jpg │ │ └── index.md │ │ ├── images │ │ ├── alipay.png │ │ ├── git-sponsor.png │ │ └── git-star.png │ │ └── index.md ├── rating │ └── index.md └── software │ ├── browser │ ├── google-chrome.md │ └── mozilla-firefox.md │ ├── ccpc-pack.md │ ├── compiler │ ├── gcc.md │ ├── jdk8.md │ └── python.md │ ├── editor │ └── vscode.md │ ├── ide │ ├── codeblocks.md │ ├── dev-cpp.md │ ├── eclipse.md │ ├── intellij-idea.md │ └── pycharm.md │ ├── images │ └── ccpc-2020-pack-content.png │ ├── index.md │ ├── oms.md │ └── other │ ├── sumatrapdf.md │ └── winrar.md ├── mkdocs.yml ├── package.json ├── pnpm-lock.yaml ├── requirements.txt └── theme ├── assets └── favicon.png └── main.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Dup4 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.remarkrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/board/data-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/board/data-format.md -------------------------------------------------------------------------------- /docs/board/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/board/index.md -------------------------------------------------------------------------------- /docs/code-library/code-library-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/code-library/code-library-build.md -------------------------------------------------------------------------------- /docs/code-library/code-library-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/code-library/code-library-list.md -------------------------------------------------------------------------------- /docs/code-library/images/actions-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/code-library/images/actions-permissions.png -------------------------------------------------------------------------------- /docs/code-library/images/enable-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/code-library/images/enable-actions.png -------------------------------------------------------------------------------- /docs/code-library/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/code-library/index.md -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/info/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/calendar.md -------------------------------------------------------------------------------- /docs/info/ccpc/5th/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/5th/final.md -------------------------------------------------------------------------------- /docs/info/ccpc/5th/harbin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/5th/harbin.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/changchun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/changchun.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/final.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/index.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/mianyang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/mianyang.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/preliminary-contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/preliminary-contest.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/qinhuangdao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/qinhuangdao.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/weihai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/weihai.md -------------------------------------------------------------------------------- /docs/info/ccpc/6th/wfinal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/6th/wfinal.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/girl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/girl.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/guangzhou.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/guangzhou.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/guilin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/guilin.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/harbin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/harbin.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/index.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/preliminary-contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/preliminary-contest.md -------------------------------------------------------------------------------- /docs/info/ccpc/7th/weihai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/7th/weihai.md -------------------------------------------------------------------------------- /docs/info/ccpc/8th/final.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 总决赛 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/gaozhi.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 高职专场 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/girl.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 女生赛 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/guangzhou.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 广州站 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/guilin.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 桂林站 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/8th/index.md -------------------------------------------------------------------------------- /docs/info/ccpc/8th/mianyang.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 绵羊站 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/preliminary-contest.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 网络赛 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/8th/weihai.md: -------------------------------------------------------------------------------- 1 | # 8th CCPC 威海站 2 | -------------------------------------------------------------------------------- /docs/info/ccpc/9th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/9th/index.md -------------------------------------------------------------------------------- /docs/info/ccpc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/ccpc/index.md -------------------------------------------------------------------------------- /docs/info/icpc/2015/beijing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2015/beijing.md -------------------------------------------------------------------------------- /docs/info/icpc/2015/ecfinal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2015/ecfinal.md -------------------------------------------------------------------------------- /docs/info/icpc/2017/world-finals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2017/world-finals.md -------------------------------------------------------------------------------- /docs/info/icpc/2018/tingdao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2018/tingdao.md -------------------------------------------------------------------------------- /docs/info/icpc/2018/world-finals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2018/world-finals.md -------------------------------------------------------------------------------- /docs/info/icpc/2019/ec-final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2019/ec-final.md -------------------------------------------------------------------------------- /docs/info/icpc/2019/hongkong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2019/hongkong.md -------------------------------------------------------------------------------- /docs/info/icpc/2019/world-finals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2019/world-finals.md -------------------------------------------------------------------------------- /docs/info/icpc/2019/yinchuan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2019/yinchuan -------------------------------------------------------------------------------- /docs/info/icpc/2020/ec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/ec.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/index.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/jinan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/jinan.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/kunming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/kunming.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/macau.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/macau.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/nanjing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/nanjing.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/nowcoder-xiaomi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/nowcoder-xiaomi.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/shanghai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/shanghai.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/shenyang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/shenyang.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/world-finals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/world-finals.md -------------------------------------------------------------------------------- /docs/info/icpc/2020/yinchuan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/2020/yinchuan.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/ec.md: -------------------------------------------------------------------------------- 1 | # 46th ICPC EC Final 2 | -------------------------------------------------------------------------------- /docs/info/icpc/46th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/index.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/jinan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/jinan.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/kunming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/kunming.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/macau.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/macau.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/nanjing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/nanjing.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/online.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/shanghai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/shanghai.md -------------------------------------------------------------------------------- /docs/info/icpc/46th/shenyang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/46th/shenyang.md -------------------------------------------------------------------------------- /docs/info/icpc/47th/ec.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC EC Final 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/hangzhou.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 杭州站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/hefei.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 合肥站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/hongkong.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 香港站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/47th/index.md -------------------------------------------------------------------------------- /docs/info/icpc/47th/jinan.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 济南站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/nanjing.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 南京站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/47th/online.md -------------------------------------------------------------------------------- /docs/info/icpc/47th/shenyang.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 沈阳站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/47th/xian.md: -------------------------------------------------------------------------------- 1 | # 47th ICPC 西安站 2 | -------------------------------------------------------------------------------- /docs/info/icpc/48th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/48th/index.md -------------------------------------------------------------------------------- /docs/info/icpc/49th/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/49th/index.md -------------------------------------------------------------------------------- /docs/info/icpc/49th/kunming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/49th/kunming.md -------------------------------------------------------------------------------- /docs/info/icpc/49th/wuhan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/49th/wuhan.md -------------------------------------------------------------------------------- /docs/info/icpc/49th/xian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/49th/xian.md -------------------------------------------------------------------------------- /docs/info/icpc/images/icpcid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/images/icpcid.png -------------------------------------------------------------------------------- /docs/info/icpc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/icpc/index.md -------------------------------------------------------------------------------- /docs/info/images/bytecamp-2022-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/images/bytecamp-2022-banner.png -------------------------------------------------------------------------------- /docs/info/jobs/metabit-trading/images/metabit_jobs_20240331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/jobs/metabit-trading/images/metabit_jobs_20240331.png -------------------------------------------------------------------------------- /docs/info/jobs/metabit-trading/images/metabit_jobs_20250413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/jobs/metabit-trading/images/metabit_jobs_20250413.jpg -------------------------------------------------------------------------------- /docs/info/jobs/metabit-trading/images/metabit_jobs_20250515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/jobs/metabit-trading/images/metabit_jobs_20250515.png -------------------------------------------------------------------------------- /docs/info/jobs/metabit-trading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/jobs/metabit-trading/index.md -------------------------------------------------------------------------------- /docs/info/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/news.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2017/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2017/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2018/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2018/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2019/jscpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2019/jscpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2019/sccpc.md: -------------------------------------------------------------------------------- 1 | # 2019 四川省省赛 2 | 3 | - [Gym Repaly](https://codeforces.com/gym/102821) 4 | -------------------------------------------------------------------------------- /docs/info/provincial-contest/2019/sdcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2019/sdcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2019/sxcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2019/sxcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2019/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2019/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2020/henancpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2020/henancpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2020/jiangsucpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2020/jiangsucpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2020/jiangxicpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2020/jiangxicpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2020/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2020/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2021/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/info/provincial-contest/2021/jiangxi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2021/jiangxi.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2021/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2021/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2022/hbcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2022/hbcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2022/zjcpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2022/zjcpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2023/sccpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2023/sccpc.md -------------------------------------------------------------------------------- /docs/info/provincial-contest/2024/jiangsu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/provincial-contest/2024/jiangsu.md -------------------------------------------------------------------------------- /docs/info/sponsors/hznu-coder/images/hznu-coder-wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/hznu-coder/images/hznu-coder-wechat.jpg -------------------------------------------------------------------------------- /docs/info/sponsors/hznu-coder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/hznu-coder/index.md -------------------------------------------------------------------------------- /docs/info/sponsors/images/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/images/alipay.png -------------------------------------------------------------------------------- /docs/info/sponsors/images/git-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/images/git-sponsor.png -------------------------------------------------------------------------------- /docs/info/sponsors/images/git-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/images/git-star.png -------------------------------------------------------------------------------- /docs/info/sponsors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/info/sponsors/index.md -------------------------------------------------------------------------------- /docs/rating/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/rating/index.md -------------------------------------------------------------------------------- /docs/software/browser/google-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/browser/google-chrome.md -------------------------------------------------------------------------------- /docs/software/browser/mozilla-firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/browser/mozilla-firefox.md -------------------------------------------------------------------------------- /docs/software/ccpc-pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ccpc-pack.md -------------------------------------------------------------------------------- /docs/software/compiler/gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/compiler/gcc.md -------------------------------------------------------------------------------- /docs/software/compiler/jdk8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/compiler/jdk8.md -------------------------------------------------------------------------------- /docs/software/compiler/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/compiler/python.md -------------------------------------------------------------------------------- /docs/software/editor/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/editor/vscode.md -------------------------------------------------------------------------------- /docs/software/ide/codeblocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ide/codeblocks.md -------------------------------------------------------------------------------- /docs/software/ide/dev-cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ide/dev-cpp.md -------------------------------------------------------------------------------- /docs/software/ide/eclipse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ide/eclipse.md -------------------------------------------------------------------------------- /docs/software/ide/intellij-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ide/intellij-idea.md -------------------------------------------------------------------------------- /docs/software/ide/pycharm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/ide/pycharm.md -------------------------------------------------------------------------------- /docs/software/images/ccpc-2020-pack-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/images/ccpc-2020-pack-content.png -------------------------------------------------------------------------------- /docs/software/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/index.md -------------------------------------------------------------------------------- /docs/software/oms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/oms.md -------------------------------------------------------------------------------- /docs/software/other/sumatrapdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/other/sumatrapdf.md -------------------------------------------------------------------------------- /docs/software/other/winrar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/docs/software/other/winrar.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /theme/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/theme/assets/favicon.png -------------------------------------------------------------------------------- /theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcpcio/docs/HEAD/theme/main.html --------------------------------------------------------------------------------