짱아의 개발 기록장

프로그래머스. 체육복(c++) / Greedy 본문

Algorithm/Programmers

프로그래머스. 체육복(c++) / Greedy

jungahshin 2021. 3. 2. 14:10
반응형

Greedy?라고 하기에는 적당한 구현문제라고 생각된다.

키포인트는! lost한 학생이 reverse에도 속해있을 수 있기 때문에 그 부분을 잘 처리해주면 문제없다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <string>
#include <vector>
#include <iostream>
 
using namespace std;
 
bool check[31];
bool check2[31];
 
int solution(int n, vector<int> lost, vector<int> reserve) {
    int answer = n;
    
    for(int i=0; i<lost.size(); i++){
        bool temp = false;
        for(int j=0; j<reserve.size(); j++){
            if(lost[i]==reserve[j]){
                check2[reserve[j]] = true;
                temp = true;
                break;
            }
        }
        if(temp==false){
            check[lost[i]] = true;
            answer--;
        }
    }
        
    for(int i=0; i<reserve.size(); i++){
        if(check2[reserve[i]]) continue;
        int before = reserve[i]-1;
        int after = reserve[i]+1;
        bool temp = false;
        if(1<=before && before<=n){
            if(check[before]==true){
                temp = true;
                check[before] = false;
                answer++;
            }
        }
        if(temp==truecontinue;
        if(1<=after && after<=n){
            if(check[after]==true){
                check[after] = false;
                answer++;
            }
        }
    }
    
    return answer;
}
cs
반응형
Comments