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
- Unreal Engine5
- GeeksForGeeks
- 프로그래머스
- C
- UnrealEngine4
- UE5
- RootMotion
- DeferredRendering
- 언리얼엔진5
- directx
- winapi
- RVO
- softeer
- Frustum
- 티스토리챌린지
- baekjoon
- NRVO
- IFileDialog
- const
- 팰린드롬 만들기
- 2294
- 1563
- UnrealEngine5
- 백준
- algorithm
- Programmers
- 줄 세우기
- 오블완
- C++
- DirectX11
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 롤케이크 자르기 본문
https://school.programmers.co.kr/learn/courses/30/lessons/132265
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
|
int solution(vector<int> topping)
{
if (topping.size() == 1) return 0;
int answer = 0;
map<int, bool> leftM;
vector<int> leftV;
map<int, bool> rightM;
vector<int> rightV;
int count = 0;
for (int i = 0; i < topping.size(); ++i)
{
if (leftM[topping[i]]) leftV.push_back(count);
else
{
++count;
leftM[topping[i]] = true;
leftV.push_back(count);
}
}
count = 0;
for (int i = topping.size() - 1; i >= 0; --i)
{
if (rightM[topping[i]]) rightV.push_back(count);
else
{
++count;
rightM[topping[i]] = true;
rightV.push_back(count);
}
}
reverse(rightV.begin(), rightV.end());
for (int i = 0; i < leftV.size()-1; ++i)
{
if (leftV[i] == rightV[i + 1]) ++answer;
}
return answer;
}
|
cs |
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 숫자 카드 나누기 (0) | 2023.06.08 |
---|---|
[Algorithm] Programmers :: 우박수열 정적분 (0) | 2023.06.08 |
[Algorithm] Programmers :: 택배상자 (0) | 2023.06.08 |
[Algorithm] Programmers :: 연속 부분 수열 합의 개수 (0) | 2023.06.07 |
[Algorithm] Programmers :: 혼자 놀기의 달인 (0) | 2023.06.07 |