解题思路:优先队列有自动排序功能,这里用最小优先队列(即卡牌数越少,在队列中排名越靠前),每次都从优先队列中拿出队头,使用一张万能牌,每次都判断该类牌的万能牌可使用量是否已经为零,如果为零,循环提前结束,一直到万能牌归零,循环自然结束,最终答案就是返回队列头元素的卡牌数量
注意事项:注意变量的更新
参考代码:
#include<iostream>
#include<queue>
#include<utility>
#include<vector>
using namespace std;
class cmp{
public:
bool operator()(pair<int,int> a,pair<int,int> b){
//pair<index,number>
return a.second>b.second;
}
};
int main(){
//存储结构定义
int n,m;
cin>>n>>m;
//优先队列结构
priority_queue<pair<int,int>,vector<pair<int,int> >,cmp> q;
int time[n+1];
for(int i=1;i<=n;i++){
int value;
scanf("%d",&value);
q.push({i,value});
}
//记录每种卡牌的万能使用最大数量
for(int i=1;i<=n;i++){
int value;
scanf("%d",&value);
time[i]=value;
}
//算法开始
while(m--){
pair<int,int> temp=q.top();
if(time[temp.first]==0)break;
time[temp.first]--;
q.pop();
temp.second++;
q.push(temp);
}
cout<<q.top().second<<endl;
}
0.0分
3 人评分
为什么我这个不对?????只得了92分,错哪了? int n, m, a[200000], b[200000]; struct cmp { bool operator()(int x, int y) { return a[x] > a[y]; } }; std::priority_queue<int, vector<int>, cmp> q; int main() { cin >> n >> m; for (int i = 0; i < n; i++) cin >> a[i], q.push(i); for (int i = 0; i < n; i++) cin >> b[i]; while (m-- && b[q.top()]) { int x = q.top(); b[x]--; a[x]++; q.pop(), q.push(x); } q.push(q.top()); q.pop(); cout << a[q.top()]; return 0; }
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:539 |
分糖果 (C++代码)浏览:1537 |
求圆的面积 (C语言代码)浏览:1366 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:626 |
WU-判定字符位置 (C++代码)浏览:1471 |
WU-拆分位数 (C++代码)浏览:819 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
【金明的预算方案】 (C++代码)浏览:873 |
1908题解浏览:680 |
SharpKon 2023-06-08 20:54:32 |
我也是,最后发现读取输入用scanf就对了
duan 2024-03-16 15:20:05 |
@SharpKon 我靠,为什么啊