Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- Smilegate
- 백준
- BaekJoon
- 스마일게이트
- 카카오
- 유니온파인드
- 1편
- 코테
- 보석쇼핑
- 알고리즘
- 서버개발캠프
- 삼성 #코테 #2020상반기 #c++
- LIS #Algorithm #요소추적
- Algorithm
- BFS
- 식단
- 중반부
- 카카오인턴
- Union-find
- 투포인터
- 소감
- 코딩테스트
- c++
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 체육복(c++) / Greedy 본문
반응형
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==true) continue;
if(1<=after && after<=n){
if(check[after]==true){
check[after] = false;
answer++;
}
}
}
return answer;
}
|
cs |
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 파일명 정렬(c++) / String (0) | 2021.04.12 |
---|---|
프로그래머스. 타겟 넘버(c++) / DFS (0) | 2021.03.02 |
프로그래머스. 추석 트래픽(c++) / String (0) | 2021.03.02 |
프로그래머스. 큰 수(c++) / Greedy (0) | 2021.03.01 |
프로그래머스. 단어변환(c++) / DFS+백트래킹 (0) | 2021.02.27 |
Comments