문제 설명
수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다.
1번 수포자가 찍는 방식: 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, ...
2번 수포자가 찍는 방식: 2, 1, 2, 3, 2, 4, 2, 5, 2, 1, 2, 3, 2, 4, 2, 5, ...
3번 수포자가 찍는 방식: 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, ...
1번 문제부터 마지막 문제까지의 정답이 순서대로 들은 배열 answers가 주어졌을 때, 가장 많은 문제를 맞힌 사람이 누구인지 배열에 담아 return 하도록 solution 함수를 작성해주세요.
제한 조건
- 시험은 최대 10,000 문제로 구성되어있습니다.
- 문제의 정답은 1, 2, 3, 4, 5중 하나입니다.
- 가장 높은 점수를 받은 사람이 여럿일 경우, return하는 값을 오름차순 정렬해주세요.
입출력 예
answers | return |
[1,2,3,4,5] | [1] |
[1,3,2,4,2] | [1,2,3] |
코드
#include <string>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> answers) {
vector<int> answer;
vector<int> s1{ 1,2,3,4,5 };
vector<int> s2{ 2,1,2,3,2,4,2,5 };
vector<int> s3{ 3,3,1,1,2,2,4,4,5,5 };
vector<int> score(3); // 3student score
for (int i = 0; i < answers.size(); i++) {
if (answers[i % 5] == s1[i]) {
score[0]++;
}
if (answers[i % 8] == s2[i]) {
score[1]++;
}
if (answers[i % 10] == s3[i]) {
score[2]++;
}
}
int max = *max_element(score.begin(), score.end());
for (int i = 0; i < 3; i++) {
if (max == score[i]) {
answer.push_back(i + 1);
}
else continue;
}
return answer;
}
memo
테스트 1 〉 통과 (0.01ms, 3.87MB)
테스트 2 〉 통과 (0.01ms, 3.83MB)
테스트 3 〉 통과 (0.00ms, 3.74MB)
테스트 4 〉 통과 (0.00ms, 3.82MB)
테스트 5 〉 실패 (0.03ms, 3.75MB)
테스트 6 〉 실패 (0.03ms, 3.91MB)
테스트 7 〉 실패 (0.09ms, 3.81MB)
테스트 8 〉 통과 (0.02ms, 3.77MB)
테스트 9 〉 실패 (0.11ms, 3.97MB)
테스트 10 〉 실패 (0.07ms, 3.76MB)
테스트 11 〉 실패 (0.13ms, 3.87MB)
테스트 12 〉 실패 (0.12ms, 3.85MB)
테스트 13 〉 실패 (0.04ms, 3.87MB)
테스트 14 〉 통과 (0.04ms, 3.93MB)
어디에서 틀린거지,,,,
링크
https://programmers.co.kr/learn/courses/30/lessons/42840?language=cpp
'algorithm' 카테고리의 다른 글
[백준/c++][11724] 연결 요소의 개수 (0) | 2019.10.10 |
---|---|
[백준/c++][1182] 부분수열의 합 (0) | 2019.10.04 |
[백준/c++][11723] 집합 (0) | 2019.10.04 |
[백준/c++][14501] 퇴사 (0) | 2019.10.03 |
[프로그래머스/js]핸드폰 번호 가리기 (0) | 2019.09.27 |
댓글