csu 1306 Manor(优先队列)

http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1306

1306: Manor

Time Limit: 1 Sec  Memory Limit: 128 MB Submit: 125  Solved: 35 [Submit][Status][Web Board]

Description

Bob有n个正整数,他将这n个整数根据大小划分成两部分。对于小于等于k的整数放在集合A中,其余的放在集合B中。每次他从集合B中取出一个最大的值,将其变成0放入A集合中。然后将A集合中所有的元素都增加a,如果此时A中元素大于k,那么要将该元素放入B中,同时将B集合中剩余的元素都增加b。Bob现在想知道经过m次操作后,B集合中元素的个数。

Input

有多组测试数据。

每组测试数据的第一行为4个整数n,k,a,b,n<=100000,k<=10^3,a,b<=100, 含义同上。接下的来的一行有n个数,表示这n个数的初始值(初始值小于等于200)。接下来的一行有一个整数q(q<=100),表示有q个询问。接下来有q行,每行一个正整数m(m<=200),表示第m次操作。

Output

对于每一个询问m,输出第m次操作前集合B中元素的个数。

Sample Input

5 100 40 20
1000 250 300 10 25
10
1
2
3
4
5
6
7
8
9
10
4 100 10 10
105 150 25 75
4
1
2
3
4

Sample Output

3
2
2
3
3
3
3
3
3
3
2
1
0
1

【题解】:
优先队列
【code】:
 #include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <queue> using namespace std; int B_cnt,a,i; struct Nod
{
int x;
int id;
}nd; priority_queue<Nod> p_q; bool operator<(Nod c,Nod b)
{
return c.x+(i-c.id)*a<b.x+(i-b.id)*a;
/*这种更好
if(c.id!=b.id) return c.id>b.id;
return c.x<b.x;
*/
} int main()
{
int n,k,b,q;
while(~scanf("%d%d%d%d",&n,&k,&a,&b))
{
B_cnt=;
while(!p_q.empty()){p_q.pop();}
int x;
for(i=;i<n;i++)
{
scanf("%d",&x);
if(x>k) B_cnt++;
else
{
nd.id = ;
nd.x = x;
p_q.push(nd);
}
}
scanf("%d",&q);
int maks=;
int qu[];
for(i=;i<=q;i++)
{
scanf("%d",&qu[i]);
if(maks<qu[i]) maks=qu[i];
} int arr[];
arr[]=B_cnt; for(i=;i<=maks;i++)
{
arr[i]=B_cnt;
if(B_cnt>)
{
B_cnt--;
nd.id = i - ;
nd.x = ;
p_q.push(nd);
}
while(!p_q.empty())
{
Nod temp = p_q.top();
if(temp.x+(i-temp.id)*a<=k) break;
p_q.pop();
B_cnt++;
}
}
for(i=;i<=q;i++)
{
printf("%d\n",arr[qu[i]]);
}
}
return ;
}
上一篇:sqlite ORMLite 框架应用


下一篇:项目vue2.0仿外卖APP(六)