uva 11995(stl)

题意:1 x,表示放进x元素,2表示拿出一个元素,给出n条指令,然后2 x表示取出的数据是什么,问可以从输入输出判断出是哪种数据结构(栈,队列,优先队列),如果有多种满足,就输出not sure,都不是就输出impossible。

题解:直接定义三个数据结构的stl变量,然后模拟放入数据,到拿出数据时和三种比对判断,可以知道是哪种数据结构。

#include <stdio.h>
#include <queue>
#include <stack>
using namespace std;
const int N = 1000;
int n;
queue<int> q1;
stack<int> s;
priority_queue<int> q2;

void init() {
	while (!q1.empty())
		q1.pop();
	while (!q2.empty())
		q2.pop();
	while (!s.empty())
		s.pop();
}

int main() {
	while (scanf("%d", &n) == 1) {
		int a, x, num1 = 0, num2 = 0, num3 = 0, cnt = 0;
		init();
		for (int i = 0; i < n; i++) {
			scanf("%d%d", &a, &x);
			if (a == 1) {
				q1.push(x);
				q2.push(x);
				s.push(x);
			}
			else {
				cnt++;
				int temp1 = -1, temp2 = -1, temp3 = -1;
				if (!q1.empty()) {
					temp1 = q1.front();
					q1.pop();
				}
				if (!q2.empty()) {
					temp2 = q2.top();
					q2.pop();
				}
				if (!s.empty()) {
					temp3 = s.top();
					s.pop();
				}
				if (temp1 == x)
					num1++;
				if (temp2 == x)
					num2++;
				if (temp3 == x)
					num3++;
			}
		}
		if (num1 == cnt && num2 == cnt || num2 == cnt && num3 == cnt || num1 == cnt && num3 == cnt)
			printf("not sure\n");
		else if (num1 == cnt)
			printf("queue\n");
		else if (num2 == cnt)
			printf("priority queue\n");
		else if (num3 == cnt)
			printf("stack\n");
		else
			printf("impossible\n");
	}
	return 0;
}
时间: 2024-10-14 07:29:37

uva 11995(stl)的相关文章

UVA 11995 STL 使用

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-I

【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! Time limit: 1.000 seconds 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'r

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 12096 STL map set 的使用

set这个容器也是STL库的一员,并且在algorithm内直接有 set_union set_intersection  这样求并集交集的操作 map 最方便的地方就是 支持下标访问 举例说明 : 1 #include<iostream> 2 include<cstdio> 3 #include<cstring> 4 #include<vector> 5 #include<map> 6 #include<set> 7 #includ

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

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&