PAT L2-012. 关于堆的判断【数据结构】
发布时间:2020-12-15 05:58:04 所属栏目:安全 来源:网络整理
导读:题目链接 https://www.patest.cn/contests/gplt/L2-012 思路 题目本身不难,就是字符串处理有点繁琐。 但是有个巨坑!就是你必须得边push边造堆,不能一次性读完再造堆,两者造出来的顺序是不一样的!为此改了十多遍(累觉不爱) 这里用了STL的make_heap,自
题目链接https://www.patest.cn/contests/gplt/L2-012 思路题目本身不难,就是字符串处理有点繁琐。 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(),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("Tn");
else printf("Fn");
}
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("Tn");
}
else
{
printf("Fn");
}
}
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("Tn");
}
else
{
printf("Fn");
}
}
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("Tn");
}
else
{
printf("Fn");
}
}
}
}
return 0;
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |