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
- C
- RVO
- 백준
- 티스토리챌린지
- 팰린드롬 만들기
- Frustum
- algorithm
- IFileDialog
- UE5
- 줄 세우기
- NRVO
- Programmers
- softeer
- baekjoon
- 1563
- DirectX11
- C++
- UnrealEngine5
- const
- RootMotion
- Unreal Engine5
- winapi
- directx
- 언리얼엔진5
- UnrealEngine4
- 오블완
- 2294
- GeeksForGeeks
- DeferredRendering
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2302번 :: 극장 좌석 본문
https://www.acmicpc.net/problem/2302
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
|
int n, m, fixedSeatPositions;
int dp[41] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
dp[0] = 1;
dp[1] = 1;
dp[2] = 2;
for (int i = 3; i <= n; ++i)
{
dp[i] = dp[i - 2] + dp[i - 1];
}
int start = 1;
int answer = 1;
vector<int> answers;
for (int i = 0; i < m; ++i)
{
cin >> fixedSeatPositions;
answers.push_back(dp[fixedSeatPositions - start]);
start = fixedSeatPositions + 1;
}
answers.push_back(dp[n + 1 - start]);
for (int i = 0; i < answers.size(); ++i)
{
answer *= answers[i];
}
cout << answer;
}
|
cs |
일반석이 n개만큼 연속됐을 때, 경우의 수가 몇가지가 나오는지만 알면 풀 수 있는 문제이다.
물론 나는 풀지 못해서... 다른 사람 풀이를 봤다.
결론적으로는 피보나치수열규칙이랑 같았다.
규칙을 알았다면, 고정석기준으로 각 구간을 나눠서 각각의 구간마다 경우의 수를 구한다음, 마지막에 다 곱해주면 되었다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2491번 :: 수열 (1) | 2024.01.09 |
---|---|
[Algorithm]Baekjoon 2629번 :: 양팔저울 (1) | 2024.01.09 |
[Algorithm]Baekjoon 2533번 :: 사회망 서비스(SNS) (0) | 2023.12.29 |
[Algorithm]Baekjoon 5582번 :: 공통 부분 문자열 (1) | 2023.12.28 |
[Algorithm] Baekjoon 15683번 : 감시 (1) | 2023.12.28 |