POJ 2724 Purifying Machine
#include
#include
#include
using namespace std;
const int N = 1100;
int n,m,t;
int g[N][N],match[N],vis[N];
char p[N][N];
bool dfs(int x){
for(int i = 0; i < t; i++){
if(g[x][i] && !vis[i]){
原创
2015-07-26 13:50:09 ·
428 阅读 ·
0 评论