nyoj93 漢諾塔(三)

原題鏈接:nyoj93 漢諾塔(三)

//思路:用三個棧儲存盤子編號,對三個棧操作,
//若第要取的棧空或者取出的編號大於要放的棧中的編號爲不合法 
#include <cstdio>
#include <stack>
using namespace std;
int P, Q;
stack<int > sta1, sta2, sta3;
void init(){
	while(!sta1.empty())	sta1.pop();
	while(!sta2.empty())	sta2.pop();
	while(!sta3.empty())	sta3.pop();
	for(int i = P;i > 0;i --)	sta1.push(i);
}
bool han(int a, int b){
	int t;
	switch(a){
		case 1: if(!sta1.empty())	{t = sta1.top(); sta1.pop();}	
				else	return false;
				break;
		case 2: if(!sta2.empty())	{t = sta2.top(); sta2.pop();}
				else	return false;
				break;
		case 3: if(!sta3.empty())	{t = sta3.top(); sta3.pop();}
				else	return false;
				break;
	}
	switch(b){
		case 1: if(sta1.empty() || t < sta1.top())	sta1.push(t);
				else	return false;
				break;
		case 2: if(sta2.empty() || t < sta2.top())	sta2.push(t);
				else	return false;
				break;
		case 3: if(sta3.empty() || t < sta3.top())	sta3.push(t);
				else	return false;
				break;
	}
	return true;
}
int main(){
	int N;
	int a, b;
	scanf("%d", &N);
	while(N --){
		scanf("%d%d", &P, &Q);
		init();
		int flag = 1;
		for(int i = 0;i < Q;i ++){
			scanf("%d%d", &a, &b);
			if(flag && !han(a, b)){
				flag = 0;
			}
		}
		if(flag)
			printf("legal\n");
		else
			printf("illegal\n");
	}
	return 0;
}


發佈了100 篇原創文章 · 獲贊 71 · 訪問量 37萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章