02 2017 档案

摘要:#include int m,n;//n个城市 m条道路 struct node{ int a,b,c,p,r; }; int visit[11]={0}; int min=100000; node point[11]; void dfs(int k,int cost) { if(cost>=min) { return; } if(poin... 阅读全文
posted @ 2017-02-07 17:13 jintg 阅读(248) 评论(0) 推荐(0)