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
- hackctf
- SWEA
- 머신러닝
- 파이썬
- XSS Game
- 생활코딩
- hackerrank
- CSS
- 자료구조 복습
- BOJ
- siss
- WarGame
- c++
- PHP 웹페이지 만들기
- lob
- Python
- 드림핵
- BOJ Python
- 백준
- c
- 풀이
- 기계학습
- The Loard of BOF
- HTML
- Sookmyung Information Security Study
- 숙명여자대학교 정보보안 동아리
- C언어
- Javascript
- 숙명여자대학교 정보보안동아리
- 웹페이지 만들기
Archives
- Today
- Total
혜랑's STORY
[HackerRank_C] Search : Ice Cream Parlor 본문
2021년도 1학기 8주차 과제(자료구조 복습용 search)
문제
링크 : https://www.hackerrank.com/challenges/icecream-parlor/problem
문제 요약 : 주어진 돈으로 아이스크림 2개 고르기
풀이
int* icecreamParlor(int m, int arr_count, int* arr, int* result_count) {
*result_count = 2;
int *result = malloc(sizeof(int)*(*result_count));
for(int i=0; i<arr_count-1; i++){
for(int j=i+1; j<arr_count; j++){
if(arr[i]+arr[j] == m){
*(result+0) = i+1;
*(result+1) = j+1;
}
}
}
return result;
}
- 처음에 *result_count에 값이 저장되어 있는 줄 알았는데 아니었다. 따라서 *result_count에 문제에서 두가지 맛을 고르라고 했으므로 2를 넣어주고 result 배열을 초기화 해준다.
- 배열을 순차적으로 돌며 i와 j번째 인덱스 값의 합이 m이 될때 i와 j값을 result 배열에 값을 넣어준다.
결과
'2021 SISS 21기 활동 > 1학기 C' 카테고리의 다른 글
[HackerRank_C] Recursive : Recursive Digit Sum (0) | 2021.06.27 |
---|---|
[HackerRank_C] Tree: Height of a Binary Tree (0) | 2021.05.17 |
[HackerRank_C] Tree: Inorder, Postorder Traversal (0) | 2021.05.11 |
[HackerRank_C] Quicksort1 - partition (0) | 2021.05.06 |
[HackerRank_C] Sherlock and Array (0) | 2021.04.11 |