1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
P3944 肮脏的牧师.cpp 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <queue>
using namespace std;
struct num{
int a;
bool operator < (const num s)const{
return a>s.a;
}
};
int main(){
int n,m,ans=-1,card1=0,card2=0,card3=0;
cin>>n>>m;
num k[n];
priority_queue<num> q;
for(int i=0;i<n;i++){
cin>>k[i].a;
q.push(k[i]);
}
while(!q.empty() && m > 0){
ans++;
num l;
l = q.top();
while(l.a-ans*3 <= 3 && !q.empty()){
if(l.a-ans*3 == 3){
card3++;
m -= 3;
}
else if(l.a-ans*3 == 2){
card2++;
m -= 2;
}
else{
card1++;
m -= 1;
}
q.pop();
l = q.top();
}
}
if(m > 0){
cout<<"Human Cannot Win Dog";
return 0;
}
if(ans == -1){
cout<<0<<" "<<0;
return 0;
}
for(int i=0;i<card3;i++){
if(m+3 <= 0){
card3--;
m += 3;
}
}
for(int i=0;i<card1;i++){
if(m+1 <= 0){
card1--;
m += 1;
}
else
break;
}
for(int i=0;i<card2;i++){
if(m+2 <= 0){
card2--;
m += 2;
}
else
break;
}
cout<<ans<<" "<<(ans+card3*4+card2+card1);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385