본문 바로가기

IT/알고리즘

[프로그래머스/lv1]체육복/c++

체육복

 

문제 설명

 

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

전체 학생의 수 n, 체육복을 도난당한 학생들의 번호가 담긴 배열 lost, 여벌의 체육복을 가져온 학생들의 번호가 담긴 배열 reserve가 매개변수로 주어질 때, 체육수업을 들을 수 있는 학생의 최댓값을 return 하도록 solution 함수를 작성해주세요.

 

풀이

 

 너무 어렵게 생각해서 뻘짓을 좀 해버렸다. 모든 경우에 대해서 계산을 했는데 그럴 필요없이 앞에서 차근 차근 문제를 풀어나가면 되는 문제였다. 후...

 

#include <string>
#include <vector>
#include <iostream>
#include <string.h> 
#include <algorithm>
using namespace std;

int solution(int n, vector<int> lost, vector<int> reserve) {
int ma = 100;
int check[31];
int check2[31];
for(int i = 1 ; i <=n; i++)check[i] = 1;
for(int i=0;i<lost.size();i++){
int ind = lost[i];
check[ind]--;
}
for(int i=0;i<reserve.size();i++){
int ind = reserve[i];
check[ind]++;
}

if(check[0]==2 && check[1] ==0){
    check[1]++;
    check[0]--;
}
if(check[n]==2 && check[n-1] ==0){
    check[n]--;
    check[n-1]++;
}
vector<int> cand;
for(int i = 2 ; i <=n-1; i++){
    if(check[i]==2){
        cand.push_back(i);
    }
}   
int si = cand.size();
for(int i =0 ; i <=si ; i++){
    vector<int> per;
    per.clear();
    for(int j = 0; j < si ; j++){
        if(j >=i){
            per.push_back(0);
        }
        else{
            per.push_back(1);
        }
    }
    do{
        memcpy(check2, check, sizeof(check2));
        for(int u = 0; u <si ; u++){
            int ind = cand[u];
            if(per[u]==1){
                check2[ind-1] =1;
                check2[ind]--;
            }
            else{
                check2[ind+1] =1;
                check2[ind]--;
            }
        }
        int temp =0;
        for(int k = 1; k <=n ; k++){
            if(check2[k]==0)temp++;
        }
        if(temp < ma )ma = temp;

    }while(prev_permutation(per.begin(),per.end()));
    }    
if(ma ==100){
    ma = 0;
    for(int i =1; i <=n ; i++){
        if(check[i]==0)ma++;
    }
}
int answer = 0;
answer = n - ma;
return answer;
    }