HDU 1814 模板题 2-sat
摘要:
敲模板做的,不知道怎么就对了,注意一下建边即可···贴代码: 1 #include 2 #include 3 using namespace std; 4 #define N 16005 5 struct twosat 6 { 7 int n; 8 vector g[N*2]; 9 bool vis[N*2];10 int path[N*2];11 int c;12 13 bool dfs(int x)14 {15 if(vis[x^1]) return false;16 if(vis[x]) return... 阅读全文
posted @ 2013-08-16 19:08 allh123 阅读(232) 评论(0) 推荐(0) 编辑