[codevs2594]解药还是毒药
Description
Smart研制出对付各种症状的解药,可是他一个不小心,每种药都小小地配错了一点原料,所以这些药都有可能在治愈某些病症的同时又使人患上某些别的病症(你可能会问那…那是解药还是毒药啊?)……,经过Smart的努力,终于弄清了每种药的具体性能,他会把每种药能治愈的病症和能使人患上的病症列一张清单给你,然后你要根据这张清单找出能治愈所有病症的最少药剂组合……顺便说一声,病症的数目不超过10种,而且他的药是用不完的,就是说每种药剂都可以被重复使用。
Input Description
给你们的单子里第一行是病症的总数n(1≤n≤10)。第二行是药剂的种类m(0<m≤100)。
以下有m行,每行有n个数字用空格隔开,文件的第i+2行的n个数字中,如果第j个数为1,就表示第i种药可以治愈病症j(如果患有这种病的话则治愈,没有这种病则无影响),如果为0表示无影响,如果为-1表示反而能使人得上这种病(无病患上,有病无影响)。Smart制的药任何两种性能都不同。
Output Description
你只要输出用的最少的药剂数就可以了,其实还有可能用尽了所有的药也不能将所有病治愈,那样的话你们只要输出“The patient will be dead.”就可以了。
Sample Input
3
2
1 0 1
-1 1 0
Sample Output
2
Data Size & Hint
1≤n≤10
0<m≤100
试题分析:没什么难度,BFS+位运算就好了(突然发现BFS和位运算很强势)
代码
#include<iostream> #include<cstring> #include<cstdio> #include<queue> #include<stack> #include<vector> #include<algorithm> //#include<cmath> using namespace std; const int INF = 9999999; #define LL long long inline int read(){ int x=0,f=1;char c=getchar(); for(;!isdigit(c);c=getchar()) if(c=='-') f=-1; for(;isdigit(c);c=getchar()) x=x*10+c-'0'; return x*f; } int N,M; int a[101][13]; int l=1,r=1; bool vis[10001]; struct data{ int st,me; }Que[100001]; void BFS(){ Que[l].me=(1<<N)-1; vis[(1<<N)-1]=true; Que[l].st=0; int to,k; while(l<=r){ to=Que[l].me; for(int i=1;i<=M;i++){ k=to; for(int j=1;j<=N;j++){ if(a[i][j]==1&&(to>>(N-j))&1) to=to-(1<<(N-j)); if(a[i][j]==-1&&!(to>>(N-j))&1) to=to+(1<<(N-j)); } if(!vis[to]){ vis[to]=true; Que[++r].me=to; Que[r].st=Que[l].st+1; if(to==0){ printf("%d ",Que[l].st+1); return ; } } to=k; } l++; } puts("The patient will be dead."); return ; } int main(){ //freopen(".in","r",stdin); //freopen(".out","w",stdout); N=read(),M=read(); for(int i=1;i<=M;i++){ for(int j=1;j<=N;j++) a[i][j]=read(); } BFS(); return 0; }