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
- 1563
- winapi
- Unreal Engine5
- softeer
- IFileDialog
- GeeksForGeeks
- UnrealEngine5
- DirectX11
- 백준
- RootMotion
- RVO
- Programmers
- baekjoon
- DeferredRendering
- directx
- 프로그래머스
- algorithm
- Frustum
- NRVO
- C++
- 2294
- C
- UE5
- 오블완
- 언리얼엔진5
- const
- 줄 세우기
- 티스토리챌린지
- UnrealEngine4
- 팰린드롬 만들기
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2670번 :: 연속부분최대곱 본문
https://www.acmicpc.net/problem/2670
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
|
int n;
double arr[10001];
double leftCumulativeProducts[10001];
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
double result = 0.0f;
double cumulativeProduct = result = leftCumulativeProducts[0] = arr[0];
for (int i = 1; i < n; ++i)
{
cumulativeProduct = max(cumulativeProduct * arr[i], arr[i]);
leftCumulativeProducts[i] = cumulativeProduct;
result = max(result, cumulativeProduct);
}
printf("%.3lf", result);
}
|
cs |
'연속된 구간' 중에서 최대의 누적곱을 구해야하는 문제이다.
이전에 상위호환의 문제를 푼적이 있어서 쉽게 풀 수 있었다.
값을 이어나가는 시도를 할건데, 만약 값을 이으는것보다(연속되어지는 것보다), 아예 새로 출발하는게 더 이득일 경우 새로 출발하는것을 선택하면 된다.
그리고 유의할점은, float자료형보다는 double을 써야한다. 아마 표현할 수 있는 정밀도개수차이 때문에 그런 것 같다.
float으로 제출하면 틀리고, double로 제출해야 통과한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 15989번 :: 1,2,3 더하기 4 (0) | 2024.01.20 |
---|---|
[Algorithm]Baekjoon 16395번 :: 파스칼의 삼각형 (0) | 2024.01.20 |
[Algorithm]Baekjoon 2240번 :: 자두나무 (0) | 2024.01.19 |
[Algorithm]Baekjoon 9657번 :: 돌 게임3 (0) | 2024.01.18 |
[Algorithm]Baekjoon 1562번 :: 계단 수 (1) | 2024.01.15 |