├── .gitignore ├── CMakeLists.txt ├── README.md ├── cdn.cpp ├── deploy.cpp ├── deploy.h ├── gene.h ├── io.cpp ├── lib ├── lib_io.h └── lib_time.h ├── mcmf.cpp ├── mcmf.h ├── random.h ├── testBranch.txt └── 初赛样例参数分析.xlsx /.gitignore: -------------------------------------------------------------------------------- 1 | /spfa 2 | /gene 3 | /random 4 | /mcmf_scaling 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/README.md -------------------------------------------------------------------------------- /cdn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/cdn.cpp -------------------------------------------------------------------------------- /deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/deploy.cpp -------------------------------------------------------------------------------- /deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/deploy.h -------------------------------------------------------------------------------- /gene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/gene.h -------------------------------------------------------------------------------- /io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/io.cpp -------------------------------------------------------------------------------- /lib/lib_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/lib/lib_io.h -------------------------------------------------------------------------------- /lib/lib_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/lib/lib_time.h -------------------------------------------------------------------------------- /mcmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/mcmf.cpp -------------------------------------------------------------------------------- /mcmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/mcmf.h -------------------------------------------------------------------------------- /random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/random.h -------------------------------------------------------------------------------- /testBranch.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | netcan 3 | 4 | -------------------------------------------------------------------------------- /初赛样例参数分析.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netcan/2017-HUAWEI-Codecraft/HEAD/初赛样例参数分析.xlsx --------------------------------------------------------------------------------