设为首页 加入收藏

TOP

poj 1753 Flip Game(高斯消元)
2015-07-20 17:49:46 来源: 作者: 【 】 浏览:2
Tags:poj 1753 Flip Game 高斯

Flip Game
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 30805 Accepted: 13409

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:
Choose any one of the 16 pieces.
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


高斯消元简单题:


#include 
  
   
#include 
   
     #include 
    
      #include 
     
       using namespace std; int a[35][35],x[35]; int equ,var;//方程数和变元数 void Debug() { for(int i=0;i
      
       a[max_r][col]) max_r=j; } if(max_r!=i) { for(int k=0;k<=var;k++) { swap(a[i][k],a[max_r][k]); } } if(a[i][col]==0) { i--; continue; } for(int j=i+1;j
       
        0?1:0;x[equ-2]=(k&2)>0?1:0;x[equ-3]=(k&4)>0?1:0;x[equ-4]=(k&8)>0?1:0; //printf("%d%d%d%d\n",x[equ-1],x[equ-2],x[equ-3],x[equ-4]); sum=0; for(int i=equ-5;i>=0;i--) { int temp=a[i][var]; for(int j=i+1;j
        
         





】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇C#到C++--C#转型C++之路(一)C 下一篇hdu4731(字符串构造+找规律)

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·哈希表 - 菜鸟教程 (2025-12-24 20:18:55)
·MySQL存储引擎InnoDB (2025-12-24 20:18:53)
·索引堆及其优化 - 菜 (2025-12-24 20:18:50)
·Shell 中各种括号的 (2025-12-24 19:50:39)
·Shell 变量 - 菜鸟教 (2025-12-24 19:50:37)