반응형
문제 설명
수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 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하는 값을 오름차순 정렬해주세요.
입출력 예
answersreturn
[1,2,3,4,5] | [1] |
[1,3,2,4,2] | [1,2,3] |
입출력 예 설명
입출력 예 #1
- 수포자 1은 모든 문제를 맞혔습니다.
- 수포자 2는 모든 문제를 틀렸습니다.
- 수포자 3은 모든 문제를 틀렸습니다.
따라서 가장 문제를 많이 맞힌 사람은 수포자 1입니다.
입출력 예 #2
- 모든 사람이 2문제씩을 맞췄습니다.
import java.util.*;
class Solution {
public int check(int[] answers, int[] sol){
int score = 0;
for(int i=0; i<answers.length; i++){
int stuAnswer = sol[i % sol.length];
if(answers[i] == stuAnswer) score++;
}
return score;
}
public int getMax(int[] scores){
int max = 0;
for(int i=0; i<scores.length; i++){
if(max<scores[i])
max = scores[i];
}
return max;
}
public int[] solution(int[] answers) {
int stuNum = 3;
List answer = new ArrayList<Integer>();
int[] sol1 = {1,2,3,4,5};
int[] sol2 = {2,1,2,3,2,4,2,5};
int[] sol3 = {3,3,1,1,2,2,4,4,5,5};
int[] scores = new int[stuNum];
scores[0] = check(answers, sol1);
scores[1] = check(answers, sol2);
scores[2] = check(answers, sol3);
int maxScore = getMax(scores);
for(int i=0; i<stuNum; i++){
if(scores[i] == maxScore){
answer.add(i+1);
}
}
int[] answerArr = new int[answer.size()];
for(int i=0; i < answer.size(); i++){
answerArr[i] = (int) answer.get(i);
}
return answerArr;
}
}
BEST 풀이)
import java.util.ArrayList;
class Solution {
public int[] solution(int[] answer) {
int[] a = {1, 2, 3, 4, 5};
int[] b = {2, 1, 2, 3, 2, 4, 2, 5};
int[] c = {3, 3, 1, 1, 2, 2, 4, 4, 5, 5};
int[] score = new int[3];
for(int i=0; i<answer.length; i++) {
if(answer[i] == a[i%a.length]) {score[0]++;}
if(answer[i] == b[i%b.length]) {score[1]++;}
if(answer[i] == c[i%c.length]) {score[2]++;}
}
int maxScore = Math.max(score[0], Math.max(score[1], score[2]));
ArrayList<Integer> list = new ArrayList<>();
if(maxScore == score[0]) {list.add(1);}
if(maxScore == score[1]) {list.add(2);}
if(maxScore == score[2]) {list.add(3);}
return list.stream().mapToInt(i->i.intValue()).toArray();
}
}
깔끔하지만 시간이 오래걸린다고 함
반응형
'컴퓨터공학 > 자료구조&알고리즘' 카테고리의 다른 글
[프로그래머스] 코딩테스트 고득점 Kit - DFS/BFS - 타겟 넘버 (0) | 2021.05.08 |
---|---|
[프로그래머스] 코딩테스트 고득점 Kit - 완전탐색 - 소수 찾기 (0) | 2021.05.08 |
[프로그래머스] 코딩테스트 고득점 Kit - 힙(Heap) - 더 맵게 (0) | 2021.05.08 |
[프로그래머스] 코딩테스트 고득점 Kit - 스택/큐 - 주식가격 (0) | 2021.05.08 |
[프로그래머스] 코딩테스트 고득점 Kit - 스택/큐 - 다리를 지나는 트럭 (0) | 2021.05.08 |
댓글