zoukankan      html  css  js  c++  java
  • ACM POJ 1753Flip Game

    Flip Game
    Time Limit: 1000MS Memory Limit: 65536K
    Total Submissions: 14735 Accepted: 6321

    Description

    Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other one is black and each piece is lying either it's black or white side up. Each round you flip 3 to 5 pieces, thus changing the color of their upper side from black to white and vice versa. The pieces to be flipped are chosen every round according to the following rules:
    1. Choose any one of the 16 pieces.
    2. Flip the chosen piece and also all adjacent pieces to the left, to the right, to the top, and to the bottom of the chosen piece (if there are any).

    Consider the following position as an example:

    bwbw
    wwww
    bbwb
    bwwb
    Here "b" denotes pieces lying their black side up and "w" denotes pieces lying their white side up. If we choose to flip the 1st piece from the 3rd row (this choice is shown at the picture), then the field will become:

    bwbw
    bwww
    wwwb
    wwwb
    The goal of the game is to flip either all pieces white side up or all pieces black side up. You are to write a program that will search for the minimum number of rounds needed to achieve this goal.

    Input

    The input consists of 4 lines with 4 characters "w" or "b" each that denote game field position.

    Output

    Write to the output file a single integer number - the minimum number of rounds needed to achieve the goal of the game from the given position. If the goal is initially achieved, then write 0. If it's impossible to achieve the goal, then write the word "Impossible" (without quotes).

    Sample Input

    bwwb
    bbwb
    bwwb
    bwww

    Sample Output

    4
    

    Source

     

    题目大意:有一个4*4的方格,每个方格中放一粒棋子,这个棋子一面是白色,一面是黑色。游戏规则为每次任选16颗中的一颗,把选中的这颗以及它四周的棋子一并反过来,当所有的棋子都是同一个颜色朝上时,游戏就完成了。现在给定一个初始状态,要求输出能够完成游戏所需翻转的最小次数,如果初始状态已经达到要求输出0。如果不可能完成游戏,输出Impossible。

    主要思想:

    1.如果用一个4*4的数组存储每一种状态,不但存储空间很大,而且在穷举状态时也不方便记录。因为每一颗棋子都只有两种状态,所以可以用二进制0和1表示每一个棋子的状态,则棋盘的状态就可以用一个16位的整数唯一标识。而翻转的操作也可以通过通过位操作来完成。显然当棋盘状态id为0(全白)或65535(全黑)时,游戏结束。

    2.对于棋盘的每一个状态,都有十六种操作,首先要判断这十六种操作之后是否有完成的情况,如果没有,则再对这十六种操作的结果分别再进行上述操作,显然这里就要用到队列来存储了。而且在翻转的过程中有可能会回到之前的某种状态,而这种重复的状态是不应该再次入队的,所以维护isVis[i]数组来判断id==i的状态之前是否已经出现过,如果不是才将其入队。如果游戏无法完成,状态必定会形成循环,由于重复状态不会再次入队,所以最后的队列一定会是空队列。

    3.由于0^1=1,1^1=0,所以翻转的操作可以通过异或操作来完成,而翻转的位置可以通过移位来确定。

     

    #include<stdio.h>
    #include
    <stdio.h>
    #include
    <string.h>
    #include
    <iostream>
    using namespace std;
    #define MAXN 65536
    int que[MAXN*2];
    int front,rear;
    bool used[MAXN];
    int step[MAXN];
    bool find0;
    void bfs(int p)
    {
    find0
    =false;
    step[p]
    =0;
    if(p==0||p==65535)
    {
    cout
    <<"0"<<endl;
    find0
    =true;
    return;
    }
    memset(used,
    false,sizeof(used));
    rear
    =front=0;
    que[rear
    ++]=p;
    used[p]
    =true;
    while(front<rear)
    {
    int tmp=que[front++];
    int t=tmp;
    //step++;
    for(int i=0;i<16;i++)
    {
    tmp
    =t;
    tmp
    ^=1<<(15-i);
    if(i%4==0)tmp^=1<<(14-i);
    else if(i%4==3)tmp^=1<<(16-i);
    else tmp^=5<<(14-i);

    if(i<=3)tmp^=1<<(15-i-4);
    else if(i>=12)tmp^=1<<(15-i+4);
    else
    {
    tmp
    ^=1<<(15-i-4);tmp^=1<<(15-i+4);
    }
    if(tmp==0||tmp==65535)
    {
    cout
    <<step[t]+1<<endl;
    find0
    =true;
    return;
    }
    if(used[tmp]==false)
    {
    que[rear
    ++]=tmp;
    used[tmp]
    =true;
    step[tmp]
    =step[t]+1;
    }
    }
    }
    }
    int main()
    {
    int i,j;
    char color;
    int id=0;
    for(i=0;i<4;i++)
    for(j=0;j<4;j++)
    {
    cin
    >>color;
    id
    <<=1;
    if(color=='b')id+=1;

    }
    bfs(id);
    if(find0==false)
    {
    cout
    <<"Impossible"<<endl;
    }
    //system("pause");
    return 0;
    }

     
  • 相关阅读:
    谈谈站桩
    mysql开发之---使用游标双层嵌套对总表进行拆分为帖子表和回复表
    【Xcode学C-3】if等流程控制、函数的介绍说明标记分组、#include以及LLVM
    hdu5303(2015多校2)--Delicious Apples(贪心+枚举)
    Hadoop最大值的算法中出现的错误(strToDouble)
    利用管道进行通信
    HDU 5308 规律+模拟
    深入浅出理解排序算法之-选择排序
    Jscript 随记
    SharedPreferences具体解释(一)——基础知识
  • 原文地址:https://www.cnblogs.com/kuangbin/p/2121677.html
Copyright © 2011-2022 走看看