P2622 关灯问题II
作者:互联网
题目
思路
设f[i]为状态i的最小变换次数。
f
[
i
]
+
1
−
>
所
有
能
够
被
i
在
一
步
内
变
换
到
的
状
态
(
(
1
<
<
n
)
−
1
>
=
i
>
=
0
)
f[i]+1->所有能够被i在一步内变换到的状态((1<<n)-1>=i>=0)
f[i]+1−>所有能够被i在一步内变换到的状态((1<<n)−1>=i>=0)
code:
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
using namespace std;
int n,m,a[101][11],f[2050];
signed main()
{
cin>>n>>m;
for (int i=1;i<=m;i++) for (int j=1;j<=n;j++) cin>>a[i][j];
memset(f,0x3f,sizeof(f));
f[(1<<n)-1]=0;
for (int i=(1<<n)-1;i>=0;i--)
{
for (int j=1;j<=m;j++)
{
int wj=i;
for (int k=1;k<=n;k++)
{
if ((a[j][k]==1&&(i&(1<<(k-1))))||(a[j][k]==-1&&(!(i&(1<<(k-1)))))) wj^=(1<<(k-1));
}
f[wj]=min(f[wj],f[i]+1);
}
}
if (f[0]==1061109567) cout<<-1;
else cout<<f[0];
return 0;
}
标签:状态,题目,一步,int,变换,II,P2622,关灯,include 来源: https://blog.csdn.net/weixin_49843717/article/details/116380860