(DS 《算法入门经典》)UVA 11995 I Can Guess the Data Structure!(判断是哪一种数据结构)

这道题比较简单。

需要注意的一些地方:

1、impossible: 所有的标记量都是false

2、not sure:同时存在2种情况或者同时存在三种情况.

Problem I

I Can Guess the Data Structure!

There is a bag-like data structure, supporting two operations:

1 x

Throw an element x into the bag.

2

Take out an element from the bag.

Given a sequence of operations with return values, you‘re going to guess the data structure. It is a stack (Last-In, First-Out), a queue (First-In, First-Out), a priority-queue (Always take out larger elements first) or something else that you can hardly imagine!

Input

There are several test cases. Each test case begins with a line containing a single integer n (1<=n<=1000). Each of the next n lines is either a type-1 command, or an integer 2 followed by an integer x. That means after executing a type-2 command, we get an element x without error. The value of x is always a positive integer not larger than 100. The input is terminated by end-of-file (EOF). The size of input file does not exceed 1MB.

Output

For each test case, output one of the following:

stack

It‘s definitely a stack.

queue

It‘s definitely a queue.

priority queue

It‘s definitely a priority queue.

impossible

It can‘t be a stack, a queue or a priority queue.

not sure

It can be more than one of the three data structures mentioned above.

Sample Input

6
1 1
1 2
1 3
2 1
2 2
2 3
6
1 1
1 2
1 3
2 3
2 2
2 1
2
1 1
2 2
4
1 2
1 1
2 1
2 2
7
1 2
1 5
1 1
1 3
2 5
1 4
2 4

Output for the Sample Input

queue
not sure
impossible
stack
priority queue



Rujia Liu‘s Present 3: A Data Structure Contest Celebrating the 100th Anniversary of Tsinghua University
Special Thanks: Yiming Li

Note: Please make sure to test your program with the gift I/O files before submitting!

直接对三种数据结构进行模拟,注意当前数据结构为空的时候的判断。

代码如下:

/*
 * UVA_11995.cpp
 *
 *  Created on: 2014年12月28日
 *      Author: Administrator
 */

#include <iostream>
#include <cstdio>
#include <queue>
#include <stack>
#include <cstring>

using namespace std;

const int maxn = 1010;

int n;
int id[maxn];
int x[maxn];

bool isStack(){
	stack<int> s;

	int i;
	for(i = 0 ; i < n ; ++i){
		if(id[i] == 1){
			s.push(x[i]);
		}else{
			if(s.empty() != true){
				int val = s.top();
				s.pop();

				if(x[i] != val){
					return false;
				}
			}else{
				return false;
			}
		}
	}

	return true;
}

bool isQueue(){
	queue<int> q;

	int i;
	for(i = 0 ; i < n ; ++i){
		if(id[i] == 1){
			q.push(x[i]);
		}else{
			if(q.empty() != true){
				int val = q.front();
				q.pop();

				if(x[i] != val){
					return false;
				}
			}else{
				return false;
			}
		}
	}

	return true;
}

bool isPriority_Queue(){
	priority_queue<int> q;

	int i;
	for(i = 0 ; i < n ; ++i){
		if(id[i] == 1){
			q.push(x[i]);
		}else{
			if(q.empty() != true){
				int val = q.top();
				q.pop();

				if(x[i] != val){
					return false;
				}
			}else{
				return false;
			}
		}
	}

	return true;

}

int main(){
	while(scanf("%d",&n) != EOF){
		memset(id,-1,sizeof(id));
		memset(x,-1,sizeof(x));

		int i;
		for(i = 0 ; i < n ; ++i){
			scanf("%d%d",&id[i],&x[i]);
		}

		bool st = isStack();
		bool q = isQueue();
		bool pq = isPriority_Queue();

		if(st == false && q == false && pq == false){
			printf("impossible\n");
		}else if((st == true && q == true && pq == true) || (st == true && q == true && pq == false) || (st == true && q == false && pq == true) || (st == false && q == true && pq == true)){
			printf("not sure\n");
		}else if(st == true && q == false && pq == false){
			printf("stack\n");
		}else if(q == true && st == false && pq == false){
			printf("queue\n");
		}else if(pq == true && st == false && q == false){
			printf("priority queue\n");
		}
	}

	return 0;
}
时间: 2024-11-05 18:19:28

(DS 《算法入门经典》)UVA 11995 I Can Guess the Data Structure!(判断是哪一种数据结构)的相关文章

【map离散化+打表】UVA 11995 I Can Guess the Data Structure!

[map离散化+打表]UVA 11995 I Can Guess the Data Structure! map关联容器:有序 + 映射,查找的复杂度O(nlogn) 题目大意 给你n个数构成的数组,求数v第k次出现的下标值(下标从1开始) – 说一下思路 这题很显然要打表预处理,关键是怎么打这张表 1.首先我们观察到v很大,开一个二维数组data[v][k]肯定存储不了,所以用map离散化(自动有序编号,避免空间浪费) 2.data[v]肯定是一个变长的数组,存储数据v出现0,1,2次--的下

UVA 11995 - I Can Guess the Data Structure! (基本数据结构)

UVA 11995 - I Can Guess the Data Structure! 题目链接 题意:给定一堆的操作,问这个数据结构是什么 思路:水题,稍微模拟一下就可以了 代码: #include <cstdio> #include <cstring> #include <stack> #include <queue> using namespace std; const int N = 1005; int n, q[N][2]; bool is_sta

【模拟+数据结构】UVA 11995 I Can Guess the Data Structure!

[模拟+数据结构]UVA 11995 I Can Guess the Data Structure! 题目大意 给出一系列操作,包含操作数和操作码,判断符合这一系列操作返回值的数据结构类型(栈.队列.优先队列) – 说一下思路 拿这三种数据结构去模拟一下就可以了 [注意]栈顶 stack.top() 队首 queue.front() 堆顶 priority_queue.top() 堆又叫做优先队列heap == priority_queue 参考代码 #include<bits/stdc++.h

[UVA] 11995 - I Can Guess the Data Structure! [STL应用]

11995 - I Can Guess the Data Structure! Time limit: 1.000 seconds Problem I I Can Guess the Data Structure! There is a bag-like data structure, supporting two operations: 1 x Throw an element x into the bag. 2 Take out an element from the bag. Given

uva 11995 I Can Guess the Data Structure 数据结构

// uva 11995 数据结构 // 给你一些操作,确定是队列还是栈还是优先队列(数值大的优先级大) // 简单题,练练基础吧相当于 #include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cfloat> #include <climits> #include <cmath> #include <c

uva 11995 - I Can Guess the Data Structure!

题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=&problem=3146&mosmsg=Submission+received+with+ID+14262472 I Can Guess the Data Structure! There is a bag-like data structure, supporti

uva 11995 I Can Guess the Data Structure stack,queue,priority_queue

题意:给你n个操做,判断是那种数据结构. 1 #include<iostream> 2 #include<cstdio> 3 #include<cstdlib> 4 #include<stack> 5 #include<queue> 6 using namespace std; 7 int n; 8 int v[1010],u[1010]; 9 10 int ck_q() 11 { 12 //cout<<"!!"&

STL UVA 11995 I Can Guess the Data Structure!

题目传送门 题意:训练指南P186 分析:主要为了熟悉STL中的stack,queue,priority_queue,尤其是优先队列从小到大的写法 #include <bits/stdc++.h> using namespace std; int main(void) { int n; while (scanf ("%d", &n) == 1) { stack<int> sta; queue<int> que; priority_queue&

算法入门经典第六章 例题6-14 Abbott的复仇(Abbott&#39;s Revenge)BFS算法实现

Sample Input 3 1 N 3 3 1 1 WL NR * 1 2 WLF NR ER * 1 3 NL ER * 2 1 SL WR NF * 2 2 SL WF ELF * 2 3 SFR EL * 0 Sample Output (3,1) (2,1) (1,1) (1,2) (2,2) (2,3) (1,3) (1,2) (1,1) (2,1) (2,2) (1,2) (1,3) (2,3) (3,3) 析 题目的大意是,输入起点,离开起点时的朝向和终点,求一条最短路. 每一个