안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
// prices_len은 배열 prices의 길이입니다.
int* solution(int prices[], size_t prices_len) {
// return 값은 malloc 등 동적 할당을 사용해주세요. 할당 길이는 상황에 맞게 변경해주세요.
int* answer = (int*)malloc(sizeof(int)*prices_len);
printf("%d\n",prices_len);
printf("%d\n",sizeof(int)*prices_len);
for(int i=0;i<prices_len;i++)
{
int cnt = 0;
for(int j=i+1;j<prices_len;j++)
{
if(prices[i]<=prices[j])
{
cnt++;
}
else
{
cnt++;
break;
}
}
if(i==prices_len-1)
{
cnt = 0;
}
answer[i] = cnt;
//printf("answer[%d]=%d\n",i,answer[i]);
}
return answer;
}
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv2] 스킬트리 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv2] 프린터 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 예산 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 직사각형 별찍기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] x만큼 간격이 있는 n개의 숫자 (0) | 2022.06.06 |
댓글