├── .gitignore ├── 2025华为软件精英挑战赛决赛任务书 正式赛.pdf ├── LICENSE ├── README.md ├── interactor ├── linux │ └── interactor-live ├── macos │ └── interactor-live └── windows │ └── interactor-live.exe ├── run.bat ├── run.py └── src ├── CMakeLists.txt ├── main.cpp ├── solution.cpp └── solution.h /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | code_craft* 3 | result.txt 4 | replay -------------------------------------------------------------------------------- /2025华为软件精英挑战赛决赛任务书 正式赛.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/2025华为软件精英挑战赛决赛任务书 正式赛.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/README.md -------------------------------------------------------------------------------- /interactor/linux/interactor-live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/interactor/linux/interactor-live -------------------------------------------------------------------------------- /interactor/macos/interactor-live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/interactor/macos/interactor-live -------------------------------------------------------------------------------- /interactor/windows/interactor-live.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/interactor/windows/interactor-live.exe -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/run.bat -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/run.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/src/solution.cpp -------------------------------------------------------------------------------- /src/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulemao/huawei-code-craft2025/HEAD/src/solution.h --------------------------------------------------------------------------------