poj1753_Flip Game(广搜)

#include<iostream>
#include<map>
#include<queue>
#include<algorithm>
#include<utility>

using namespace std;

map<int, int> m;
queue<pair<int,int>> q;

void get_res()
{
    while (!q.empty())
        q.pop();
    q.push(make_pair((1 << 16) - 1,0));
    m.insert(make_pair((1 << 16) - 1,0));
    while (!q.empty())
    {
        int c = q.front().first;
        int n = q.front().second;
        q.pop();
        for (int i = 0;i < 16;i++)
        {
            int nc = c ^ (1 << i);
            if (i + 4 < 16)
                nc ^= 1 << (i + 4);
            if (i - 4 > -1)
                nc ^= 1 << (i - 4);
            if (i % 4 > 0)
                nc ^= 1 << (i - 1);
            if (i % 4 < 3)
                nc ^= 1 << (i + 1);
            if (m.find(nc) == m.end())
            {
                m.insert(make_pair(nc, n + 1));
                q.push(make_pair(nc, n + 1));
            }
        }
    }
}

int main()
{
    get_res();
    int a = 0, b = 0;
    for (int i = 0;i < 16;i++)
        {
            char c;
            cin >> c;
            if (c == 'b')
                a += 1 << i;
            else
                b += 1 << i;
        }
    if (m.find(a) != m.end() || m.find(b) != m.end())
    {
        int ans1 = m[a];
        int ans2 = m[b];
        int ans = min(ans1, ans2);
        cout << ans << endl;
    }
    else
        cout << "Impossible" << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值