• POJ 1222


    EXTENDED LIGHTS OUT
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 6196   Accepted: 4074

    Description

    In an extended version of the game Lights Out, is a puzzle with 5 rows of 6 buttons each (the actual puzzle has 5 rows of 5 buttons each). Each button has a light. When a button is pressed, that button and each of its (up to four) neighbors above, below, right and left, has the state of its light reversed. (If on, the light is turned off; if off, the light is turned on.) Buttons in the corners change the state of 3 buttons; buttons on an edge change the state of 4 buttons and other buttons change the state of 5. For example, if the buttons marked X on the left below were to be pressed,the display would change to the image on the right. 

    The aim of the game is, starting from any initial set of lights on in the display, to press buttons to get the display to a state where all lights are off. When adjacent buttons are pressed, the action of one button can undo the effect of another. For instance, in the display below, pressing buttons marked X in the left display results in the right display.Note that the buttons in row 2 column 3 and row 2 column 5 both change the state of the button in row 2 column 4,so that, in the end, its state is unchanged. 

    Note: 
    1. It does not matter what order the buttons are pressed. 
    2. If a button is pressed a second time, it exactly cancels the effect of the first press, so no button ever need be pressed more than once. 
    3. As illustrated in the second diagram, all the lights in the first row may be turned off, by pressing the corresponding buttons in the second row. By repeating this process in each row, all the lights in the first 
    four rows may be turned out. Similarly, by pressing buttons in columns 2, 3 ?, all lights in the first 5 columns may be turned off. 
    Write a program to solve the puzzle.

    Input

    The first line of the input is a positive integer n which is the number of puzzles that follow. Each puzzle will be five lines, each of which has six 0 or 1 separated by one or more spaces. A 0 indicates that the light is off, while a 1 indicates that the light is on initially.

    Output

    For each puzzle, the output consists of a line with the string: "PUZZLE #m", where m is the index of the puzzle in the input file. Following that line, is a puzzle-like display (in the same format as the input) . In this case, 1's indicate buttons that must be pressed to solve the puzzle, while 0 indicate buttons, which are not pressed. There should be exactly one space between each 0 or 1 in the output puzzle-like display.

    Sample Input

    2
    0 1 1 0 1 0
    1 0 0 1 1 1
    0 0 1 0 0 1
    1 0 0 1 0 1
    0 1 1 1 0 0
    0 0 1 0 1 0
    1 0 1 0 1 1
    0 0 1 0 1 1
    1 0 1 1 0 0
    0 1 0 1 0 0

    Sample Output

    PUZZLE #1
    1 0 1 0 0 1
    1 1 0 1 0 1
    0 0 1 0 1 1
    1 0 0 1 0 0
    0 1 0 0 0 0
    PUZZLE #2
    1 0 0 1 1 1
    1 1 0 0 0 0
    0 0 0 1 0 0
    1 1 0 1 0 1
    1 0 1 1 0 1

    Source

     
    固定好第一行的翻转情况,然后按照贪心策略来确定其他位置的翻转情况
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 
     6 using namespace std;
     7 
     8 bool sta[10][10];
     9 bool flip[10][10];
    10 int dx[] = {0,0,1,-1},dy[] = {1,-1,0,0};
    11 
    12 int get(int x,int y) {
    13         int c = sta[x][y] + flip[x][y];
    14         for(int i = 0; i < 4; ++i) {
    15                 int x1 = x + dx[i],y1 = y + dy[i];
    16 
    17                 if(x1 >= 0 && x1 < 5 && y1 >= 0 && y1 < 6) {
    18                         c += flip[x1][y1];
    19                 }
    20         }
    21 
    22         return c % 2;
    23 }
    24 
    25 bool check() {
    26         for(int i = 1; i < 5; ++i) {
    27                 for(int j = 0; j < 6; ++j) {
    28                         flip[i][j] = get(i - 1,j);
    29                 }
    30         }
    31 
    32         for(int i = 0; i < 6; ++i) {
    33                 if(get(4,i)) return false;
    34         }
    35 
    36         return true;
    37 }
    38 
    39 void solve() {
    40         for(int s = 0; s < (1 << 6); ++s) {
    41                 memset(flip,0,sizeof(flip));
    42                 for(int i = 0; i < 6; ++i) {
    43                         if(s >> i & 1) flip[0][i] = 1;
    44                 }
    45                 if(check()) {
    46                         //printf("fuck
    ");
    47                         for(int i = 0; i < 5; ++i) {
    48                                 for(int j = 0; j < 6; ++j) {
    49                                         printf("%d%c",flip[i][j],
    50                                                j + 1 == 6 ? '
    ' : ' ');
    51                                 }
    52                         }
    53                         return;
    54                 }
    55         }
    56 
    57 }
    58 
    59 int main()
    60 {
    61     //freopen("sw.in","r",stdin);
    62     int t,ca = 1;
    63     scanf("%d",&t);
    64 
    65     while(t--) {
    66             for(int i = 0; i < 5; ++i) {
    67                     for(int j = 0; j < 6; ++j) {
    68                             scanf("%d",&sta[i][j]);
    69                             //printf("%d ",sta[i][j]);
    70                     }
    71 
    72             }
    73 
    74 
    75 
    76             printf("PUZZLE #%d
    ",ca++);
    77             solve();
    78 
    79     }
    80     //cout << "Hello world!" << endl;
    81     return 0;
    82 }
    View Code
  • 相关阅读:
    MySQL服务器SSD性能问题分析与测试
    MySQL 5.7基于GTID复制的常见问题和修复步骤(一)
    用pt-stalk定位MySQL短暂的性能问题
    服务器IO瓶颈对MySQL性能的影响
    MySQL主从检验一致性工具pt-table-checksum报错的案例分析
    MySQL DROP DB或TABLE场景下借助SQL Thread快速应用binlog恢复方案
    MySQL服务器发生OOM的案例分析
    NUMA导致的MySQL服务器SWAP问题分析与解决方案
    python学习之-- 生成唯一ID
    python练习之-计算器
  • 原文地址:https://www.cnblogs.com/hyxsolitude/p/3643040.html
Copyright © 2020-2023  润新知