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
- 프로그래머스
- 언리얼엔진5
- 백준
- 1563
- Programmers
- GeeksForGeeks
- UnrealEngine5
- 오블완
- DirectX11
- C++
- C
- UnrealEngine4
- RootMotion
- IFileDialog
- NRVO
- softeer
- const
- directx
- baekjoon
- DeferredRendering
- 팰린드롬 만들기
- winapi
- UE5
- 티스토리챌린지
- RVO
- 2294
- Unreal Engine5
- 줄 세우기
- algorithm
- Frustum
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2491번 :: 수열 본문
https://www.acmicpc.net/problem/2491
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
56
57
58
59
60
61
62
63
|
int n;
int arr[100001] = { 0 };
int answer = 0;
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];
}
if (n == 1)
{
cout << 1;
return 0;
}
int count = 1;
int prevNum = arr[0];
for (int i = 1; i < n; ++i)
{
if (arr[i] >= prevNum)
{
++count;
}
else
{
count = 1;
}
prevNum = arr[i];
answer = max(answer, count);
}
count = 1;
prevNum = arr[0];
for (int i = 1; i < n; ++i)
{
if (arr[i] <= prevNum)
{
++count;
}
else
{
count = 1;
}
prevNum = arr[i];
answer = max(answer, count);
}
cout << answer;
}
|
cs |
생각보다 정답비율이 낮아서 의아한? 문제.
연속된경우를 찾는거라서 N번의 시간복잡도로 끝낼 수 있다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 13398번 :: 연속합 2 (1) | 2024.01.11 |
---|---|
[Algorithm]Baekjoon 13301번 :: 타일 장식물 (0) | 2024.01.10 |
[Algorithm]Baekjoon 2629번 :: 양팔저울 (1) | 2024.01.09 |
[Algorithm]Baekjoon 2302번 :: 극장 좌석 (1) | 2023.12.30 |
[Algorithm]Baekjoon 2533번 :: 사회망 서비스(SNS) (0) | 2023.12.29 |