码迷,mamicode.com
首页 > 其他好文 > 详细

USACO lamps

时间:2014-06-24 18:03:04      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   数据   2014   string   

IOI 98的题目,那时候好像还不是很难,连我这种弱渣都能做。每个按钮按两次就相当于没按,所以一共其实相当于最多按4次,先把C降到<=4,然后直接暴搜就可以,一共才16种状态(其实没有),注意判重和排序,会二进制处理的话很快。= =可惜我不会,用了非常挫的方法转字符串。如果数据大点直接就挂了= =

/*
ID:kevin_s1
PROG:lamps
LANG:C++
*/

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <cstdlib>
#include <list>
#include <cmath>
#include <bitset>
#include <strstream>

using namespace std;

//gobal variable====
int N;
int C;
int state[101];
int on, off;
int ons[101], offs[101];
int _count;
vector<long long> hash;
vector<string> result;
//==================


//function==========
void print(){
	for(int i = 1; i <= N; i++){
		cout<<state[i];
	}
	cout<<endl;
}

void init(){
	for(int i = 1; i <= N; i++)
		state[i] = 1;
}

bool check(){
	for(int i = 0; i < on; i++){
		if(state[ons[i]] != 1){
			return false;
		}
	}
	for(int i = 0; i < off; i++){
		if(state[offs[i]] != 0){
			return false;
		}
	}
	return true;
}

void change(int i){
	if(state[i] == 0)
		state[i] = 1;
	else if(state[i] == 1)
		state[i] = 0;
}

void Button1(){
	for(int i = 1; i <= N; i++){
		change(i);
	}
}

void Button2(){
	for(int i = 1; i <= N; i+=2){
		change(i);
	}
}

void Button3(){
	for(int i = 2; i <= N; i+=2){
		change(i);
	}
}

void Button4(){
	for(int i = 0; (3*i + 1) <= N; i++){
		int k = 3 * i + 1;
		change(k);
	}
}

void Button(int i){
	if(i == 1)
		Button1();
	if(i == 2)
		Button2();
	if(i == 3)
		Button3();
	if(i == 4)
		Button4();
}

void DFS(int i){
	if(i > C)
		return;
	if(check()){
		long long sum = 0;
		for(int i = 1; i <= N; i++){
			sum = sum * 10;
			sum = sum + state[i];
		}
		vector<long long>::iterator iter = find(hash.begin(), hash.end(), sum);
		if(iter == hash.end()){
			_count++;
			hash.push_back(sum);
			string str;
			for(int i = 1; i <= N; i++){
				char ch = state[i] + 48;
				str = str + ch;
			}
			result.push_back(str);
		}
	}
	for(int j = 1; j <= 4; j++){
		Button(j);
		DFS(i + 1);
		Button(j);
	}
	return;
}


//==================

int main(){
	freopen("lamps.in","r",stdin);
	freopen("lamps.out","w",stdout);
	cin>>N;
	cin>>C;
	on = 0, off = 0;
	_count = 0;
	int _on, _off;
	while(cin>>_on && _on != -1){
		ons[on++] = _on;
	}
	while(cin>>_off && _off != -1){
		offs[off++] = _off;
	}
	init();
	while(C > 4){
		C = C - 2;
	}
	DFS(0);
	sort(result.begin(), result.end(), less<string>());
	vector<string>::iterator iter = result.begin();
	for(;iter != result.end(); iter++){
		cout<<*iter<<endl;
	}
	if(_count == 0){
		cout<<"IMPOSSIBLE"<<endl;
	}
	return 0;
}


USACO lamps,布布扣,bubuko.com

USACO lamps

标签:class   blog   code   数据   2014   string   

原文地址:http://blog.csdn.net/kevin_samuel/article/details/33482033

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!