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 |
Tags
- 언리얼 커스텀 플러그인
- UnrealMP
- 민겸수
- 백준 1253번
- 오손데이터읽기
- UActor
- 1253번
- oracle
- 의미와 무의미의 경계에서
- 셰그먼트트리
- OS
- Unreal
- SQL
- objtofbx
- hackerank
- 데이터베이스 배움터
- 비재귀셰그먼트
- 백준
- command not found
- 트랜잭션 관리
- 언리얼 플러그인
- Security
- 5639
- Linux
- 2단계로킹
- 1967번
- 실습
- 1759번
- C++
- FBX
Archives
- Today
- Total
fatalite
체육복 - 프로그래머스 본문
문제
문제 난이도 : 프로그래머스 1단계
문제 분류 : 그리디
문제 리뷰
않이 1단계인데 헤맸다...
문제 소스코드
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int solution(int n, vector<int> lost, vector<int> reserve) {
int answer = 0;
vector<int> Vec(n+2, 1);
Vec[0] = 0;
Vec[n+1] = 0;
sort(lost.begin(), lost.end());
sort(reserve.begin(), reserve.begin());
for(int i : reserve){Vec[i] = 2;}
for(int i : lost){Vec[i]--;}
for(int i = 1; i < n + 1; i++){
if(Vec[i] == 0){
if(Vec[i-1] == 2){
Vec[i] = 1;
Vec[i-1]--;
continue;
}
if(Vec[i+1] == 2){
Vec[i] = 1;
Vec[i+1]--;
continue;
}
}
}
for(int i = 1; i < n + 1; i++){
if(Vec[i] >= 1) answer++;
}
return answer;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
리코쳇 로봇 - 프로그래머스 (1) | 2023.10.19 |
---|---|
네트워크 - 프로그래머스 (0) | 2023.10.18 |
도둑질 - 프로그래머스 (0) | 2023.10.15 |
사칙 연산 - 프로그래머스 (0) | 2023.10.15 |
등굣길 - 프로그래머스 (0) | 2023.10.15 |