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
- Frustum
- Unreal Engine5
- algorithm
- C++
- UnrealEngine5
- 오블완
- 1563
- RVO
- directx
- RootMotion
- winapi
- 언리얼엔진5
- GeeksForGeeks
- 줄 세우기
- C
- UE5
- baekjoon
- IFileDialog
- 팰린드롬 만들기
- 프로그래머스
- DirectX11
- softeer
- UnrealEngine4
- NRVO
- 티스토리챌린지
- 백준
- const
- 2294
- DeferredRendering
- Programmers
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 2891번 : 카약과 강풍 본문
https://www.acmicpc.net/problem/2891
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
51
52
53
54
55
|
int team[12] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, s, r, temp;
int result = 0;
cin >> n >> s >> r;
for (int i = 0; i < 12; ++i)
{
++team[i];
}
for (int i = 0; i < s; ++i) // 카약 손상된 팀
{
cin >> temp;
--team[temp];
}
for (int i = 0; i < r; ++i) // 여분 있는 팀
{
cin >> temp;
++team[temp];
}
for (int i = 1; i <= n; ++i)
{
if (team[i] == 0) // 카약없으면
{
if (team[i - 1] == 2) // 왼쪽체크
{
team[i - 1] = 1;
team[i] = 1;
continue;
}
if (team[i + 1] == 2) // 오른쪽체크
{
team[i + 1] = 1;
team[i] = 1;
continue;
}
++result;
}
}
cout << result;
}
|
cs |
그리디문제들을 풀기시작하면서 느끼는건데, 주어진 조건을 정말로 잘 분석해야한다고 생각한다.
물론 다른 유형의문제들도 당연히 마찬가지겠지만, 그리디문제들이 유독 조건에 함정? 추가조건같은게 숨겨져있는 느낌이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2195번 : 문자열 복사 (0) | 2023.03.07 |
---|---|
[Algorithm] Baekjoon 2590번 : 색종이 (0) | 2023.03.06 |
[Algorithm] Baekjoon 2785번 : 체인 (0) | 2023.03.04 |
[Algorithm] Baekjoon 11501번 : 주식 (0) | 2023.03.02 |
[Algorithm] Baekjoon 16933번 : 벽 부수고 이동하기3 (1) | 2023.03.02 |