전체 글
-
[Programmers] 체육복STUDYING/Algorithm 2021. 9. 27. 00:36
https://programmers.co.kr/learn/courses/30/lessons/42862 코딩테스트 연습 - 체육복 점심시간에 도둑이 들어, 일부 학생이 체육복을 도난당했습니다. 다행히 여벌 체육복이 있는 학생이 이들에게 체육복을 빌려주려 합니다. 학생들의 번호는 체격 순으로 매겨져 있어, 바로 앞번 programmers.co.kr #include #include using namespace std; int solution(int n, vector lost, vector reserve) { int answer = 0; vector students(n, 1); for (int i = 0; i < lost.size(); ++i) students[lost[i] - 1]--; for (int i =..
-
[Programmers] 모의고사STUDYING/Algorithm 2021. 9. 27. 00:35
https://programmers.co.kr/learn/courses/30/lessons/42840 코딩테스트 연습 - 모의고사 수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다. 1번 수포자가 찍는 programmers.co.kr C++ #include #include using namespace std; vector solution(vector answers) { vector a = { 1, 2, 3, 4, 5 }; vector b = { 2, 1, 2, 3, 2, 4, 2, 5 }; vector c = { 3, 3, 1, 1, 2, 2, 4, 4, 5, 5 }; int cntA = 0..
-
[Programmers] K번째 수STUDYING/Algorithm 2021. 9. 27. 00:33
https://programmers.co.kr/learn/courses/30/lessons/42748 코딩테스트 연습 - K번째수 [1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3] programmers.co.kr import Foundation func solution(_ array:[Int], _ commands:[[Int]]) -> [Int] { var res = [Int]() for i in 0..
-
[Programmers] 완주하지 못한 선수STUDYING/Algorithm 2021. 9. 27. 00:33
https://programmers.co.kr/learn/courses/30/lessons/42576 코딩테스트 연습 - 완주하지 못한 선수 수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다. 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수 programmers.co.kr C++ #include #include #include using namespace std; string solution(vector participant, vector completion) { string answer = ""; sort(participant.begin(), participant.end()); sort(completion.b..
-
[Programmers] 멀쩡한 사각형STUDYING/Algorithm 2021. 9. 27. 00:32
https://programmers.co.kr/learn/courses/30/lessons/62048 코딩테스트 연습 - 멀쩡한 사각형 가로 길이가 Wcm, 세로 길이가 Hcm인 직사각형 종이가 있습니다. 종이에는 가로, 세로 방향과 평행하게 격자 형태로 선이 그어져 있으며, 모든 격자칸은 1cm x 1cm 크기입니다. 이 종이를 격자 선을 programmers.co.kr import Foundation func solution(_ w: Int, _ h: Int) -> Int64{ let gcd = GCD(w, h) let smallW = w/gcd let smallH = h/gcd let cutRectangle = (smallW + smallH - 1) * gcd return Int64(w * h - ..
-
[Programmers] 오픈채팅방STUDYING/Algorithm 2021. 9. 27. 00:31
https://programmers.co.kr/learn/courses/30/lessons/42888 코딩테스트 연습 - 오픈채팅방 오픈채팅방 카카오톡 오픈채팅방에서는 친구가 아닌 사람들과 대화를 할 수 있는데, 본래 닉네임이 아닌 가상의 닉네임을 사용하여 채팅방에 들어갈 수 있다. 신입사원인 김크루는 카카오톡 오 programmers.co.kr C++로 풀었었네 // #include #include #include #include #include using namespace std; vector solution(vector record) { vector answer; queue q; map m; for (int i = 0; i < record.size(); ++i) { string tmp; vector..
-
[Programmers] 기능개발STUDYING/Algorithm 2021. 9. 27. 00:30
https://programmers.co.kr/learn/courses/30/lessons/42586 코딩테스트 연습 - 기능개발 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 programmers.co.kr import Foundation func solution(_ progresses:[Int], _ speeds:[Int]) -> [Int] { // 작업 개수 let workCnt = progresses.count let remainProgress = progresses.compactMap{ 100 - $0 } var workQ: [Int] = [] var..
-
[Programmers] 크레인 인형뽑기STUDYING/Algorithm 2021. 9. 27. 00:28
https://programmers.co.kr/learn/courses/30/lessons/64061 코딩테스트 연습 - 크레인 인형뽑기 게임 [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] [1,5,3,5,1,2,1,4] 4 programmers.co.kr import Foundation var result = 0 func solution(_ board: [[Int]], _ moves:[Int]) -> Int { var stack = [Int]() var newBoard = board for move in moves { for i in 0..