안녕하세요. 오늘은 똥게임을 할 거예요.
https://www.acmicpc.net/problem/30701
일단 최대한 몬스터를 많이 잡으면 됩니다.
만약 더이상 못잡는다면 장비를 작은것부터 순서대로 사용하면 됩니다.
#include <iostream>
#include <queue>
#define ll long long
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
priority_queue <ll, vector <ll>, greater<> > monster, item;
ll N, D, type, x;
cin >> N >> D;
for (int i = 0; i < N; i++)
{
cin >> type >> x;
if (type == 1) monster.push(x);
else item.push(x);
}
ll ans = item.size(); //아이템 방은 무조건 돌파 가능
while (monster.size())
{
while (item.size() && monster.top() >= D) //장비가 남아있고 아직 몬스터를 쓰러트릴 수 없다면
{
D *= item.top();
item.pop();
}
if (monster.top() < D) //쓰러트릴 수 있다면
{
ans++;
D += monster.top();
monster.pop();
}
else break; //불가능
}
cout << ans;
}
감사합니다.