您的位置:首页 > 理论基础 > 数据结构算法

PAT L2-012. 关于堆的判断【数据结构】

2016-06-07 13:39 483 查看

题目链接

https://www.patest.cn/contests/gplt/L2-012

思路

题目本身不难,就是字符串处理有点繁琐。

但是有个巨坑!就是你必须得边push边造堆,不能一次性读完再造堆,两者造出来的顺序是不一样的!为此改了十多遍(累觉不爱)

这里用了STL的make_heap,自己手写也可以,不怎么长。

AC代码

#include <iostream>
#include <queue>
#include <vector>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <functional>
using namespace std;

vector<int>heap;
int find(int a)
{
return distance(heap.begin(), find(heap.begin(), heap.end(), a));
}
int main()
{
int n, m;
scanf("%d%d", &n, &m);
while (n--)
{
int t;
scanf("%d", &t);
heap.push_back(t);
make_heap(heap.begin(), heap.end(), greater<int>());
}
getchar();
while (m--)
{
string q;
getline(cin, q);
if (q[q.length() - 1] == 't')
{
int a;
stringstream ss(q);
ss >> a;
if (heap[0] == a) printf("T\n");
else printf("F\n");
}
else if (q[q.length() - 1] == 's')
{
int a, b;
string temp;
stringstream ss(q);
ss >> a >> temp >> b;
int pos_a = find(a);
int pos_b = find(b);
pos_a++; pos_b++;
if (pos_a / 2 == pos_b / 2)
{
printf("T\n");
}
else
{
printf("F\n");
}
}
else
{
stringstream ss(q);
int a, b;
string temp;
ss >> a >> temp >> temp;
if (temp[0] == 't')
{
ss >> temp >> temp >> b;
int pos_a = find(a);
int pos_b = find(b);
if (pos_b == pos_a * 2 + 1 || pos_b == pos_a * 2 + 2)
{
printf("T\n");
}
else
{
printf("F\n");
}
}
else if (temp[0] == 'a')
{
ss >> temp >> temp >> b;
int pos_a = find(a);
int pos_b = find(b);
if (pos_a == pos_b * 2 + 1 || pos_a == pos_b * 2 + 2)
{
printf("T\n");
}
else
{
printf("F\n");
}
}
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  数据结构 stl