摘要: 给你一些骨牌。。看能不能一笔走完~赤裸裸的欧拉~代码:SGU101 1 #include<cstdio> 2 #include<cstring> 3 4 const int maxn=110; 5 6 struct Edge{ 7 int to,next; 8 }; 9 Edge edge[maxn],tol[maxn];10 int Map[10][10];11 int etot;12 int exist[10];13 14 void Eular_dfs(int idx){15 for(int i=0;i<7;i++){16 if(Map[idx][i])... 阅读全文
posted @ 2012-10-02 09:33 舞步い嫣语逝爱醉灵魂 阅读(262) 评论(0) 推荐(0)