Programming/C C++

Migratory Birds

728x90

www.hackerrank.com/challenges/migratory-birds/problem

배열을 이용해 값을 비교해 최대의 값을 가지는 타입을 출력하는 프로그램이다.

// Complete the migratoryBirds function below.
int migratoryBirds(int arr_count, int* arr) {
    int common=0;
    int nums[5] = {0,};
    for(int i=0; i<arr_count;i++){
        nums[arr[i]-1]+=1;
    }
    for(int j=0;j<5;j++){
        if(nums[j]>nums[common])
            common = j;
    }
    return common+1;    
}

△ 작성한 부분

nums라는 이름의 배열을 크기 5로 해서 선언하고 값을 모두 0으로 초기화하도록 했다. 이 배열의 '인덱스+1'이 새들의 타입을 나타내도록 의도했다.

문제에서 조건으로 발견되는 숫자가 같을 경우 타입의 넘버가 낮은 것을 선택하도록 했으므로 두번째 for문 내의 조건에서 등호를 포함하지 않았다.

#include <assert.h>
#include <ctype.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char* readline();
char* ltrim(char*);
char* rtrim(char*);
char** split_string(char*);

// Complete the migratoryBirds function below.
int migratoryBirds(int arr_count, int* arr) {
    int common=0;
    int nums[5] = {0,};
    for(int i=0; i<arr_count;i++){
        nums[arr[i]-1]+=1;
    }
    for(int j=0;j<5;j++){
        if(nums[j]>nums[common])
            common = j;
    }
    return common+1;    
}

int main()
{
    FILE* fptr = fopen(getenv("OUTPUT_PATH"), "w");

    char* arr_count_endptr;
    char* arr_count_str = ltrim(rtrim(readline()));
    int arr_count = strtol(arr_count_str, &arr_count_endptr, 10);

    if (arr_count_endptr == arr_count_str || *arr_count_endptr != '\0') { exit(EXIT_FAILURE); }

    char** arr_temp = split_string(rtrim(readline()));

    int* arr = malloc(arr_count * sizeof(int));

    for (int i = 0; i < arr_count; i++) {
        char* arr_item_endptr;
        char* arr_item_str = *(arr_temp + i);
        int arr_item = strtol(arr_item_str, &arr_item_endptr, 10);

        if (arr_item_endptr == arr_item_str || *arr_item_endptr != '\0') { exit(EXIT_FAILURE); }

        *(arr + i) = arr_item;
    }

    int result = migratoryBirds(arr_count, arr);

    fprintf(fptr, "%d\n", result);

    fclose(fptr);

    return 0;
}

char* readline() {
    size_t alloc_length = 1024;
    size_t data_length = 0;
    char* data = malloc(alloc_length);

    while (true) {
        char* cursor = data + data_length;
        char* line = fgets(cursor, alloc_length - data_length, stdin);

        if (!line) {
            break;
        }

        data_length += strlen(cursor);

        if (data_length < alloc_length - 1 || data[data_length - 1] == '\n') {
            break;
        }

        alloc_length <<= 1;

        data = realloc(data, alloc_length);

        if (!data) {
            data = '\0';

            break;
        }
    }

    if (data[data_length - 1] == '\n') {
        data[data_length - 1] = '\0';

        data = realloc(data, data_length);

        if (!data) {
            data = '\0';
        }
    } else {
        data = realloc(data, data_length + 1);

        if (!data) {
            data = '\0';
        } else {
            data[data_length] = '\0';
        }
    }

    return data;
}

char* ltrim(char* str) {
    if (!str) {
        return '\0';
    }

    if (!*str) {
        return str;
    }

    while (*str != '\0' && isspace(*str)) {
        str++;
    }

    return str;
}

char* rtrim(char* str) {
    if (!str) {
        return '\0';
    }

    if (!*str) {
        return str;
    }

    char* end = str + strlen(str) - 1;

    while (end >= str && isspace(*end)) {
        end--;
    }

    *(end + 1) = '\0';

    return str;
}

char** split_string(char* str) {
    char** splits = NULL;
    char* token = strtok(str, " ");

    int spaces = 0;

    while (token) {
        splits = realloc(splits, sizeof(char*) * ++spaces);

        if (!splits) {
            return splits;
        }

        splits[spaces - 1] = token;

        token = strtok(NULL, " ");
    }

    return splits;
}

 

 

 

 

SMALL

'Programming > C C++' 카테고리의 다른 글

[DS] Reverse a doubly-linked list  (0) 2020.09.27
[DS] Delete a Node  (0) 2020.09.20
[DS] Insert a node at a specific position in a linked list  (0) 2020.09.13
Divisible Sum Pairs  (0) 2020.09.13
[DS] Insert a node at the head of a linked list  (0) 2020.08.30