费解的开关(状态压缩)

题目链接
AcWing 95.
思路:先枚举第一行的状态,再依次判断其他每个位置是否需要操作。

代码:

#include <bits/stdc++.h>

using namespace std;

char s[7][7];
char b[7][7];
int dx[4] = {0,0,1,-1};
int dy[4] = {1,-1,0,0};

void calc(char &c){
    c = (char)(((c - '0') ^ 1) + '0');
}

void trans(int i,int j){
    calc(b[i][j]);
    for(int p=0;p<4;p++){
        int tx = i + dx[p];
        int ty = j + dy[p];
        
        if(tx<0 || tx>4 || ty<0 || ty>4)    continue;
        calc(b[tx][ty]);
    }
    return;
}

bool check(){
    for(int i=0;i<5;i++)
        for(int j=0;j<5;j++)
            if(b[i][j]=='0')
                return false;
    
    return true;
}

void myprint(){
    for(int j=0;j<5;j++){
        for(int k=0;k<5;k++){
            cout << b[j][k];
        }
        cout << endl;
    }
}

void solve(){
    for(int i=0;i<5;i++)
        cin >> s[i];
    
    int ans = 2e9;
    bool f = 0;
    for(int i=0;i<(1<<5);i++){
        for(int j=0;j<5;j++)
            for(int k=0;k<5;k++)
                b[j][k] = s[j][k];
        
        int cnt = 0;
        // 枚举第一行每一列
        for(int j=0;j<5;j++){
            if((i>>j)&1){
                cnt++;
                trans(0,j);
            }
        }
        // 枚举剩余行
        for(int j=1;j<5;j++){
            for(int k=0;k<5;k++){
                if(b[j-1][k]=='0'){
                    cnt++;
                    trans(j,k);
                }
            }
        }
        
        // check
        if(check()){
            f = 1;
        }else{
            continue;
        }
        ans = min(ans,cnt);
    }
    
    if(!f || ans>6)  cout << "-1\n";
    else    cout << ans << endl;
}

int main()
{
    std::ios::sync_with_stdio(false);std::cin.tie(nullptr);
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

辽宇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值