본문 바로가기
프로그래머스/코딩연습1

[프로그래머스] 체육복(42862)(Kotlin)

by 유줘니 2020. 1. 16.

원본 문제 : https://programmers.co.kr/learn/courses/30/lessons/42862?language=kotlin

 

코딩테스트 연습 - 체육복 | 프로그래머스

점심시간에 도둑이 들어, 일부 학생이 체육복을 도난당했습니다. 다행히 여벌 체육복이 있는 학생이 이들에게 체육복을 빌려주려 합니다. 학생들의 번호는 체격 순으로 매겨져 있어, 바로 앞번호의 학생이나 바로 뒷번호의 학생에게만 체육복을 빌려줄 수 있습니다. 예를 들어, 4번 학생은 3번 학생이나 5번 학생에게만 체육복을 빌려줄 수 있습니다. 체육복이 없으면 수업을 들을 수 없기 때문에 체육복을 적절히 빌려 최대한 많은 학생이 체육수업을 들어야 합니다. 전체

programmers.co.kr

 

<첫번째> 2020/06/08

class Solution {
    fun solution(n: Int, lost: IntArray, reserve: IntArray): Int {

        val list = MutableList(n) { 1 }

        lost.forEach { list[it - 1]-- }
        reserve.forEach { list[it - 1]++ }

        list.forEachIndexed { index, value ->
            if (value == 0) {
                if (index - 1 > 0 && list[index - 1] > 1) {
                    list[index - 1]--
                    list[index]++
                } else if (index + 1 < n && list[index + 1] > 1) {
                    list[index + 1]--
                    list[index]++
                }
            }
        }

        return list.count { it > 0 }
    }

}

댓글