728x90
1. 문제 설명
2. 풀이 과정
- 문제 해결의 흐름
- 후안의 돈으로 들고 있는 무기보다 큰 공격력의 무기를 살 수 있다면 모험을 떠날 수 있다.
- 나의 코드
#include <iostream>
#define MAX 101
using namespace std;
int N; // 무기의 수
int X, S; // X : 돈, S : 후안의 공격력
int weaponPower, weaponPrice;
int main() {
cin >> N;
cin >> X >> S;
bool result = false;
for (int i = 0; i < N; i++) {
cin >> weaponPrice >> weaponPower;
if (weaponPrice <= X && weaponPower > S) {
result = true;
break;
}
}
if (result) cout << "YES";
else cout << "NO";
return 0;
}
3. 후기
pnupc div2의 1번 문제로 간단한 구현 문제이다!
'Algorithm > implementation' 카테고리의 다른 글
[백준] 31797 아~파트 아파트 C++ (0) | 2024.05.10 |
---|