poj 1176 Party Lamps

http://poj.org/problem?id=1176

Party Lamps
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 4023   Accepted: 1386

Description

To brighten up the gala dinner of the IOI'98 we have a set of N coloured lamps numbered from 
1 to N. The lamps are connected to four buttons: 
button 1 -- when this button is pressed, all the lamps change their state: those that are ON are turned OFF and those that are OFF are turned ON. 
button 2 -- changes the state of all the odd numbered lamps. 
button 3 -- changes the state of all the even numbered lamps. 
button 4 -- changes the state of the lamps whose number is of the form 3K+1 (with K >= 0), i.e., 1,4,7,... 
There is a counter C which records the total number of button presses. 
When the party starts, all the lamps are ON and the counter C is set to zero. 

You are given the value of counter C and information on the final state of some of the lamps. Write a program to determine all the possible final configurations of the N lamps that are consistent with the given information, without repetitions.

Input

Your program is to read from standard input. The input contains four lines, describing the number N of lamps available, the number C of button presses, and the state of some of the lamps in the final configuration. 
The first line contains the number N and the second line the final value of counter C. The third line lists the lamp numbers you are informed to be ON in the final configuration, separated by one space and terminated by the integer -1. The fourth line lists the lamp numbers you are informed to be OFF in the final configuration, separated by one space and terminated by the integer -1. 

The parameters N and C are constrained by: 
10 <= N <= 100 
1 <= C <= 10000 
The number of lamps you are informed to be ON, in the final configuration, is less than or equal to 2.The number of lamps you are informed to be OFF, in the final configuration, is less than or equal to 2.

Output

Your program is to write to standard output. The output must contain all the possible final configurations (without repetitions) of all the lamps. There is at least one possible final configuration. Each possible configuration must be written on a different line. Each line has N characters, where the first character represents the state of lamp 1 and the last character represents the state of lamp N. A 0 (zero) stands for a lamp that is OFF, and a 1 (one) stands for a lamp that is ON. Configurations should be listed in binary ascending order.

Sample Input

10
1
-1
7 -1

Sample Output

0000000000
0101010101
0110110110

分析:

题意:对于一串彩灯,提供四种改变彩灯状态(ON<=>OFF)的操作:a.改变所有彩灯状态;b.改变奇数彩灯状态;c.改变偶数彩灯状态;d.改变3k+1号彩灯状态(1,4,7,10...)。 

给定彩灯数目,操作次数,和对于某几个彩灯必须为ON、某几个彩灯必须为OFF的要求,问经过给定次数的操作,最终能达到的满足要求的状态有多少种,输出所有满足要求的彩灯状态。 

原题中操作次数是1<=C<=10000的,如果以此为搜索深度,时间复杂度相当可观。

转换思路:

  当按第一种操作时 :奇偶全变

  当按第二种操作时 :奇数全变

  当按第三种操作时 :偶数全变

  当按第四种操作时 :3K + 1 全变(1 , 4 ,7 , 10 , 13 , 16 , 。。。97 ,100)。

四种情况的最小公倍数为 8 ,即是周期为 8 ,打表可得:

string s[8]={
  "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
  "1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010",
  "0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101",
  "0110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110",
  "1001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001",
  "1100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011101",
  "0011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011", 
  "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
 };

    1,当只按键一次出现的状态有:1,2,3,4         

           2,当按键二次则出现的状态有:1,2,3,5,6,7,8

           3,当按键三次或三次以上全部状态可以出现。


AC代码:

 1 #include<iostream>
 2 #include<string>
 3 #include<algorithm>
 4 using namespace std;
 5 int N,C;
 6 int v1[3],v2[3];
 7 int cmp(const void *a,const void *b)
 8 {
 9  if(*(string*)a>*(string*)b)
10     return 1;
11  else return 0;
12 }
13 
14 int main()
15 {
16  //freopen("input.txt","r",stdin);
17  string result[8];
18  int temp,i,i1(0),i2(0),j,id(0);
19  string s[8]={
20   "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
21   "1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010",
22   "0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101",
23         "0110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110110",
24   "1001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001001",
25   "1100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011101",
26         "0011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011100011", 
27      "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
28  };
29         
30  cin>>N>>C;
31  cin>>temp;
32  while(temp!=-1)
33  {
34   v1[i1++]=temp-1;
35   cin>>temp;
36  }
37  cin>>temp; 
38  while(temp!=-1)
39  {
40   v2[i2++]=temp-1;
41   cin>>temp;
42  }
43  if(C==0)
44  {
45   for(i=0;i<N;i++)
46      cout<<s[7][i];
47   cout<<endl;
48  }//c=0
49  else if(C>=1)
50  {
51   for(i=0;i<8;i++)
52   {
53    if(i==3) 
54    {
55     if(C==2) continue;
56    }
57    if(i==4 || i==5 || i==6 || i==7) 
58    {
59     if(C<2) continue;
60    }
61    for(j=0;j<i1;j++)
62    {
63     temp=v1[j];
64     if(s[i][temp]!='1') break;
65    }
66    if(j==i1)
67    {
68     for(j=0;j<i2;j++)
69     {
70      temp=v2[j];
71      if(s[i][temp]!='0') break;
72     }
73     if(j==i2)
74     {
75      result[id]=s[i];
76      id++;
77     }
78    }
79   }//for
80    qsort(result,id,sizeof(string),cmp);
81    for(i=0;i<id;i++)
82    {
83     for(j=0;j<N;j++)
84     cout<<result[i][j];
85     cout<<endl;
86    }
87  }//if
88 
89  return 0;
90 
91 }
View Code
原文地址:https://www.cnblogs.com/jeff-wgc/p/4452915.html