zoukankan      html  css  js  c++  java
  • The Pilots Brothers' refrigerator

     
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 20325   Accepted: 7830   Special Judge

    Description

    The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to open a refrigerator.

    There are 16 handles on the refrigerator door. Every handle can be in one of two states: open or closed. The refrigerator is open only when all handles are open. The handles are represented as a matrix 4х4. You can change the state of a handle in any location [i, j] (1 ≤ i, j ≤ 4). However, this also changes states of all handles in row i and all handles in column j.

    The task is to determine the minimum number of handle switching necessary to open the refrigerator.

    Input

    The input contains four lines. Each of the four lines contains four characters describing the initial state of appropriate handles. A symbol “+” means that the handle is in closed state, whereas the symbol “−” means “open”. At least one of the handles is initially closed.

    Output

    The first line of the input contains N – the minimum number of switching. The rest N lines describe switching sequence. Each of the lines contains a row number and a column number of the matrix separated by one or more spaces. If there are several solutions, you may give any one of them.

    Sample Input

    -+--
    ----
    ----
    -+--

    Sample Output

    6
    1 1
    1 3
    1 4
    4 1
    4 3
    4 4
     1 #include<stdio.h>
     2 #include<string.h>
     3 int main() {
     4     int in[16];
     5     int tmp[16];
     6     int length=4;
     7     int size=length*length;
     8     char temp;
     9     //将输入变成0,1,开的为1,关的为0,放在数组in中
    10     for(int i=0;i<size;i++){
    11         scanf("%c",&temp);
    12         if(temp=='
    ')
    13             scanf("%c",&temp);
    14         if(temp=='+')
    15             in[i]=0;
    16         else
    17             in[i]=1;
    18     }
    19 //    for(int i=0;i<size;i++){
    20 //        printf("%d 
    ",in[i]);
    21 //    }
    22     //com数组存放的是开关的组合情况
    23     int com[16];
    24     for(int i=1;i<size+1;i++){
    25 
    26         for(int j=0;j<i;j++){
    27             com[j]=j;
    28         }
    29         int end=0;
    30         while(1){
    31             memcpy(tmp,in,size*sizeof(int));
    32             //按照搜索到的组合情况对冰箱进行开关
    33             for(int j=0;j<i;j++){
    34             int row=com[j]/4;
    35             int col=com[j]%4;
    36             for(int k=0;k<length;k++){
    37                 tmp[row*length+k]=1-tmp[row*length+k];
    38                 tmp[k*length+col]=1-tmp[k*length+col];
    39             }
    40             tmp[row*length+col]=1-tmp[row*length+col];
    41             }
    42             int zero=0;
    43             for(int j=0;j<size;j++){
    44                 if(tmp[j]==1){
    45                     zero+=1;
    46                 }
    47             }
    48 //            for(int k=0;k<4;k++){
    49 //                printf("%d	",com[k]);
    50 //            }
    51 //            printf("
    ");
    52     //        printf("sero is %d
    ",zero);
    53 //            zero=size;
    54             //判断是否找到答案
    55             if(zero==size){
    56                 end=1;
    57                 break;
    58             }
    59             //判断开关情况是i个的组合是否已经全部搜索完毕,是则搜索i+1个情况
    60             if(com[0]==size-i)
    61                 break;
    62             //搜索下一个开关为i个的组合情况
    63             for(int j=i-1;j>=0;j--){
    64                 if(com[j]!=size-(i-j)){
    65                     com[j]++;
    66                     for(int k=j+1;k<i;k++)
    67                         com[k]=com[k-1]+1;
    68                     break;
    69                 }
    70 
    71             }
    72 
    73         }
    74         //若找到结果,输出结果
    75         if(end==1){
    76             printf("%d
    ",i);
    77             for(int j=0;j<i;j++){
    78                 printf("%d %d
    ",com[j]/4+1,com[j]%4+1);
    79             }
    80         }
    81     }
    82 
    83     return 0;
    84 }
  • 相关阅读:
    Spring事务内方法调用自身事务 增强的三种方式
    SpringBoot优化内嵌的Tomcat
    Tomcat 8.0的并发优化
    Swift搭建本地http服务器,实现外部视频即时播放
    更新ruby:Error running 'requirements_osx_brew_update_system ruby-2.4.1报错解决
    iOS关于沙盒文件拷贝manager.copyItem的一个坑
    Swift udp实现根据端口号监听广播数据(利用GCDAsyncUdpSocket实现)
    iOS刻度尺换算之1mm等于多少像素理解
    Swift下的基于UIView的位置属性扩展
    iOS Main Thread Checker: UI API called on a background thread的解释
  • 原文地址:https://www.cnblogs.com/sdxk/p/4587218.html
Copyright © 2011-2022 走看看