Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BOJ
- 숙명여자대학교 정보보안 동아리
- 기계학습
- 숙명여자대학교 정보보안동아리
- 백준
- BOJ Python
- 자료구조 복습
- hackerrank
- siss
- C언어
- 머신러닝
- XSS Game
- Python
- 드림핵
- c++
- PHP 웹페이지 만들기
- 웹페이지 만들기
- SWEA
- Sookmyung Information Security Study
- CSS
- 생활코딩
- HTML
- hackctf
- Javascript
- lob
- WarGame
- The Loard of BOF
- c
- 파이썬
- 풀이
Archives
- Today
- Total
혜랑's STORY
[HackerRank] Electronics Shop 본문
4주차 자료구조 복습
Prepare > Algorithms > Implementation
풀이
예산 내에서 살 수있는 가장 높은 금액 구성으로 물건을 구매하는 것이 목표이다. 따라서 가질 수 있는 모든 경우의 수를 계산해 주었다. 이때 예산 내에서 살 수 있는 구성이 없다면 -1을 리턴하면 된다.
전체적인 코드는 다음과 같다.
int getMoneySpent(vector<int> keyboards, vector<int> drives, int b) {
int maxB = -1;
for(int i=0; i<keyboards.size(); i++){
for(int j=0; j<drives.size(); j++){
if(keyboards[i] + drives[j] <= b)
maxB = max(maxB, (keyboards[i] + drives[j]));
}
}
return maxB;
}
실행 결과는 다음과 같다.
'2021 SISS 21기 활동 > 2학기 C' 카테고리의 다른 글
[HackerRank] Correctness and the Loop Invariant (0) | 2021.10.06 |
---|---|
[HackerRank] Combo Meal (0) | 2021.10.01 |
[HackerRank] Closet Numbers (0) | 2021.09.24 |
[HackerRank] Equal Stacks (0) | 2021.09.24 |
[HackerRank] Jim and the Orders (0) | 2021.09.17 |