摘要: 贴个源码// UVa1572 Self-Assembly // Rujia Liu #include #include #include using namespace std; int ID(char a1, char a2) { return (a1-'A')*2 + (a2 == '+' ? 0 : 1); } int G[52][52]; // connect(A+, B-) ... 阅读全文
posted @ 2017-08-29 11:41 Neord 阅读(209) 评论(0) 推荐(0)