图形变换问题

#include <iostream>
#include <fstream>
#include <queue>
#include <algorithm>
using namespace std;

long int src;
long int des;
const int MAX = 1 << 16;
int num[MAX];       //变换次数
int how[MAX];       //如何变换
bool flag = false;  //是否找到解

void search()
{
    queue<long int> q;
    num[src] = 0;
    q.push(src);
    while(!q.empty())
    {
        long int enode = q.front(); 
        q.pop();
        for(int j=0, mode=3; j<16; j++, mode<<=1)  //交换左右相邻的方格颜色
        {
            if(j%4!=3 && (((enode & mode)>>j==1) || (enode & mode)>>j==2)) //如果是在同一行,且相邻方格颜色不同
            {
                long int now = enode ^ mode;  //交换颜色
                if(num[now] == -1)      //如果now状态没有出现过
                {
                    num[now] = num[enode] + 1;       
                    how[now] = j;
                    q.push(now);
                }
            }
        }
        for(j=0, mode=17; j<12; j++, mode<<=1)  //交换上下相邻的方格颜色
        {
            if(((enode & mode)>>j==1) || (enode & mode)>>j==16) //相邻方格颜色不同
            {
                long int now = enode ^ mode;  //交换颜色
                if(num[now] == -1)      //如果now状态没有出现过
                {
                    num[now] = num[enode] + 1;       
                    how[now] = -j-1;
                    q.push(now);
                }
            }
        }
        if(num[des] != -1)  //转换到最终目标状态成功
        {
            flag = true;
            break;
        }
    }
}

void output(long int node)
{
    if(node == src)
        return;
    long int last = node;
    if(how[node] >=0)
        last ^= 3 << how[node];
    else
        last ^= 17 << (-how[node]-1);
    output(last);
    if(how[node] >=0)
        cout << (how[node]/4+1) << " " << (how[node]%4+1) << " " << (how[node]/4+1) << " " << (how[node]%4+2) << endl;
    else
        cout << (how[node]/4+1) << " " << (how[node]%4+1) << " " << (how[node]/4+2) << " " << (how[node]%4+1) << endl;
}

int main()
{
    int a, b;
    ifstream fin("图形变换.txt");
    cout << "输入图形A的方格阵列:\n";
    int i, j;
    for(i=0; i<16; i++)
    {
        fin >> a;
        cout << a << " ";
        if(i % 4 == 3)
            cout << endl;
        src |= (a << i);
    }
    cout << "输入图形B的方格阵列:\n";
    for(i=0; i<16; i++)
    {
        fin >> b;
        cout << b << " ";
        if(i % 4 == 3)
            cout << endl;
        des |= (b << i);
    }
    memset(num, -1, sizeof(num));
    memset(how, 0, sizeof(how));

    search();
    if(flag)
    {   
        cout << "\n变换次数及过程:\n";
        cout << num[des] << endl;
        output(des);
    }
    else
        cout << "No Solution!";

    cout << endl << endl;
    fin.close();
    return 0;
}

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值