Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- UML관련
- 프로그래머스
- 스마트포인터
- 언리얼엔진구조체
- map
- UE_LOG
- 언리얼가비지컬렉터
- enumasByue
- UELOG
- 데이터애셋
- moreeffectiveC++
- 애셋로드
- 정렬
- 약참조
- 강참조
- 크리티컬섹션
- 자료구조
- dataasset
- C++
- 정렬알고리즘
- 알고리즘
- 람다사용정렬
- 선택정렬
- stl
- UE4 커스텀로그
- unorder_map
- C++최적화
- BFS
- 델리게이트
- 람다
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 1 ] - 모의고사 본문
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> answers) {
vector<int> answer;
int arr1[5] = { 1,2,3,4,5 };
int arr2[8] = { 2,1,2,3,2,4,2,5 };
int arr3[10] = { 3,3,1,1,2,2,4,4,5,5 };
vector<int> result(3, 0);
for (int i = 0; i < answers.size(); i++)
{
if (arr1[i % 5] == answers[i])
{
result[0] += 1;
}
if (arr2[i % 8] == answers[i])
{
result[1] += 1;
}
if (arr3[i % 10] == answers[i])
{
result[2] += 1;
}
}
int max = result[0] > result[1] ? result[0] : result[1];
max = max > result[2] ? max : result[2];
for (int i = 0; i < 3; i++)
{
if (result[i] == max)
{
answer.push_back(i + 1);
}
}
return answer;
}
'Coding Test - cpp > Greedy' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 구명보트 (C++) (1) | 2023.11.22 |
---|---|
[백준 1946: 신입 사원] - C++ (0) | 2021.04.12 |
[백준 10162: 전자레인지] - C++ (0) | 2021.03.25 |
[백준 1449: 수리공 항승] - C++ (0) | 2021.03.16 |
[백준 1541: 잃어버린 괄호] - C++ (0) | 2021.03.05 |