这题有个小技巧, 按一个键两次等于没按,所以如果depsum > 16的话其实不用做深搜到depsum次,而只要16次就可以了。

 /*
 ID: yingzho1
 LANG: C++
 TASK: lamps
 */
 #include <iostream>
 #include <fstream>
 #include <string>
 #include <map>
 #include <vector>
 #include <set>
 #include <algorithm>
 #include <stdio.h>
 #include <queue>
 #include <cstring>

 using namespace std;

 ifstream fin("lamps.in");
 ofstream fout("lamps.out");

 int N, depsum;

 bool check(string s, vector<int> &on, vector<int> &off) {
     ; i < on.size(); i++) {
         ') return false;
     }
     ; i < off.size(); i++) {
         ') return false;
     }
     return s.size();
 }

 void dfs(set<string> &res, int c1, int c2, int c3, int c4, string s, vector<int> &on, vector<int> &off, int dep) {
     if (check(s, on, off)) {
          == ) {
             res.insert(s);
             //return;
         }
     }
      || dep > depsum) return;
     string pre = s;
     ) {
         dfs(res, c1+, c2, c3, c4, s, on, off, dep+);
         ; i < s.size(); i++) {
             ';
             ';
         }
         dfs(res, c1+, c2, c3, c4, s, on, off, dep+);
     }

     s = pre;

     ) {
         dfs(res, c1, c2+, c3, c4, s, on, off, dep+);
         ; i < s.size(); i++) {
              == ) {
                 ';
                 ';
             }
         }
         dfs(res, c1, c2+, c3, c4, s, on, off, dep+);
     }

     s = pre;
     ) {
         dfs(res, c1, c2, c3+, c4, s, on, off, dep+);
         ; i < s.size(); i++) {
              == ) {
                 ';
                 ';
             }
         }
         dfs(res, c1, c2, c3+, c4, s, on, off, dep+);
     }

     s = pre;
     ) {
         dfs(res, c1, c2, c3, c4+, s, on, off, dep+);
         ; i < s.size(); i++) {
              == ) {
                 ';
                 ';
             }
         }
         dfs(res, c1, c2, c3, c4+, s, on, off, dep+);
     }

     s = pre;
 }

 int main()
 {
     fin >> N >> depsum;
     ');
     int n;
     vector<int> on, off;
     //cout << N << " " << depsum << endl;
     ) on.push_back(n-);
     ) off.push_back(n-);
     //for (int i = 0; i < on.size(); i++) cout << on[i] << endl;
     //for (int i = 0; i < off.size(); i++) cout << off[i] << endl;
     set<string> res;
     dfs(res, , , , , s, on, off, );
     vector<string> ret;
     for (set<string>::iterator it = res.begin(); it != res.end(); it++) ret.push_back(*it);
     sort(ret.begin(), ret.end());
     ) {
         fout << "IMPOSSIBLE" << endl;
         ;
     }
     ; i < ret.size(); i++) {
         fout << ret[i] << endl;
     }

     ;
 }

USACO Section 2.2: Party Lamps的更多相关文章

  1. USACO Section 1.3 题解 (洛谷OJ P1209 P1444 P3650 P2693)

    usaco ch1.4 sort(d , d + c, [](int a, int b) -> bool { return a > b; }); 生成与过滤 generator&& ...

  2. 【USACO 2.2】Party Lamps

    四种开关,n盏灯,1:改变所有灯状态,2:改变奇数灯状态,3:改变偶数灯状态,4:改变3k+1灯状态 给你按开关的总次数c和部分灯限制条件(开或关),一开始都是开着的.($c \leq 10000,n ...

  3. USACO Section 3.3: Riding the Fences

    典型的找欧拉路径的题.先贴下USACO上找欧拉路径的法子: Pick a starting node and recurse on that node. At each step: If the no ...

  4. USACO Section 3.3 Camlot(BFS)

    BFS.先算出棋盘上每个点到各个点knight需要的步数:然后枚举所有点,其中再枚举king是自己到的还是knight带它去的(假如是knight带它的,枚举king周围的2格(网上都这么说,似乎是个 ...

  5. [IOI1996] USACO Section 5.3 Network of Schools(强连通分量)

    nocow上的题解很好. http://www.nocow.cn/index.php/USACO/schlnet 如何求强连通分量呢?对于此题,可以直接先用floyd,然后再判断. --------- ...

  6. USACO Section 5.3 Big Barn(dp)

    USACO前面好像有类似的题目..dp(i,j)=min(dp(i+1,j),dp(i+1,j+1),dp(i,j+1))+1  (坐标(i,j)处无tree;有tree自然dp(i,j)=0) .d ...

  7. USACO Section 1.3 Prime Cryptarithm 解题报告

    题目 题目描述 牛式的定义,我们首先需要看下面这个算式结构: * * * x * * ------- * * * <-- partial product 1 * * * <-- parti ...

  8. USACO Section 1.1 Your Ride Is Here 解题报告

    题目 问题描述 将字符串转变为数字,字母A对应的值为1,依次对应,字母Z对应的值为26.现在有一个字符串,将其中的每个字符转变为数字之后进行累乘,最终的结果对47求余数. 题目给你两个字符串,其中的字 ...

  9. USACO Section 1.1-1 Your Ride Is Here

    USACO 1.1-1 Your Ride Is Here 你的飞碟在这儿 众所周知,在每一个彗星后都有一只UFO.这些UFO时常来收集地球上的忠诚支持者.不幸的是,他们的飞碟每次出行都只能带上一组支 ...

随机推荐

  1. html textarea换行和dom换行

    从事开发已经两年多了,但是还是不会发现问题找原因,可能是自己一直在学校养成的习惯吧,不过最近在葛经理的带领下开始学会找原因了,而且发现自己变得更成熟了. 现在讲讲textarea和dom的换行吧,我们 ...

  2. 基于word制作网站webhelp

    处理问题描述:现在我有个javaweb项目,需要在portal上面点击help即可打开: 当前搜索百度(谷歌不能用了),没有找到更好的解决方案,自己想了个比较简单实用的方法,仅供参考: 设计原理:利用 ...

  3. appium 启动失败解决方案

    本机下载了:AppiumForWindows,启动Appium.exe 的时候,立即提示:应用程序已停止运行!! 本机环境: WIN 7 64 位,后来查了资料才知道Appium 要求安装.net f ...

  4. LAMP一键安装包-CentOS 5/6下自动编译安装Apache,MySQL,PHP

    http://www.centos.bz/lamp/ 此安装包已经不再维护,请使用新版http://www.centos.bz/ezhttp/. 适用环境: 系统支持:CentOS-5 (32bit/ ...

  5. A beginner’s introduction to Deep Learning

    A beginner’s introduction to Deep Learning I am Samvita from the Business Team of HyperVerge. I join ...

  6. xp/2003开关3389指令

    开启3389: @echo offtitle 开启3389clsrem 开启3389reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\ ...

  7. python 二分法查找

    这个也是之前写的程序,现在把它贴上来 #!/usr/bin/python import os os.system('clear') def binsearch(seq,x,low,high): mid ...

  8. HDU4542 小明系列故事——未知剩余系

    大赞的数论题: 大致思路: 对于TYPE=1的情况,认为 X 中有 X-K个约数,求最小的X,X-K>0 那么化为B+K的约数为B, 我们知道(B+K)的约数<=2*SQRT(B+K);这 ...

  9. [翻译]The Neophyte's Guide to Scala Part 12: Type Classes

    The Neophyte's Guide to Scala Part 12: Type Classes 过去的两周我们讨论了一些使我们保持DRY和灵活性的函数式编程技术,特别是函数组合,partial ...

  10. 评论 ”[实例] 设计基于JQM的WebApp“

    点这里 DEMO 先上最近做的一个WebApp小应用,http://iwxy.me/m.html,大家可以先去玩玩儿,在移动终端访问查看最佳效果 实现的功能是微博上偶然看到的一个小测试,动物认识真实的 ...