mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
80 lines
1.7 KiB
C++
80 lines
1.7 KiB
C++
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <iostream>
|
||
|
#include <algorithm>
|
||
|
#include <vector>
|
||
|
#include <queue>
|
||
|
#include <set>
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
#include <math.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <time.h>
|
||
|
#define maxn 150005
|
||
|
using namespace std;
|
||
|
struct node
|
||
|
{
|
||
|
char name[205];
|
||
|
int v, tp;
|
||
|
friend bool operator <(node a,node b)
|
||
|
{
|
||
|
if(a.v == b.v) return a.tp > b.tp;
|
||
|
return a.v < b.v;
|
||
|
}
|
||
|
};
|
||
|
node fri[maxn];
|
||
|
struct node1
|
||
|
{
|
||
|
int t, r;
|
||
|
}ask[maxn];
|
||
|
bool cmp(node1 a, node1 b)
|
||
|
{
|
||
|
return a.t < b.t;
|
||
|
}
|
||
|
int put[maxn], wen[105];
|
||
|
int main()
|
||
|
{
|
||
|
int t, k, m, p, i, j, ok, now;
|
||
|
scanf("%d", &t);
|
||
|
while(t--)
|
||
|
{
|
||
|
scanf("%d %d %d", &k, &m, &p);
|
||
|
for(i = 0;i < k;i++)
|
||
|
{
|
||
|
scanf("%s %d",fri[i].name, &fri[i].v);
|
||
|
fri[i].tp = i;
|
||
|
}
|
||
|
ask[0].t = -1;
|
||
|
for(i = 0;i < m;i++)
|
||
|
scanf("%d %d", &ask[i].t, &ask[i].r);
|
||
|
for(i = 0;i < p;i++)
|
||
|
scanf("%d", &wen[i]);
|
||
|
priority_queue<node>q;
|
||
|
sort(ask, ask + m, cmp);
|
||
|
now = 0;
|
||
|
ok = 0;
|
||
|
for(i = 1;i <= k;i++)
|
||
|
{
|
||
|
q.push(fri[i - 1]);
|
||
|
if(i == ask[now].t)
|
||
|
{
|
||
|
for(j = 1;j <= ask[now].r&&(!q.empty());j++)
|
||
|
{
|
||
|
node x = q.top();
|
||
|
q.pop();
|
||
|
put[ok++] = x.tp;
|
||
|
}
|
||
|
now++;
|
||
|
}
|
||
|
}
|
||
|
while(!q.empty())
|
||
|
{
|
||
|
node x = q.top();
|
||
|
q.pop();
|
||
|
put[ok++] = x.tp;
|
||
|
}
|
||
|
for(i = 0;i < p;i++)
|
||
|
printf("%s%c", fri[put[wen[i] - 1]].name, i==p-1?'\n':' ');
|
||
|
}
|
||
|
}
|