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
- winapi
- Unreal Engine5
- 프로그래머스
- C++
- 언리얼엔진5
- RVO
- 백준
- 티스토리챌린지
- algorithm
- 팰린드롬 만들기
- baekjoon
- const
- softeer
- 줄 세우기
- 1563
- UnrealEngine4
- C
- RootMotion
- DirectX11
- NRVO
- GeeksForGeeks
- DeferredRendering
- Programmers
- 2294
- IFileDialog
- 오블완
- Frustum
- UE5
- UnrealEngine5
- directx
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 2559번 : 수열 본문
https://www.acmicpc.net/problem/2559
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
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int n, k;
int arr[100001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> k;
int sum = 0;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
if (i < k)
{
sum += arr[i];
}
}
int left = 0;
int right = k - 1;
int maxNum = sum;
while (right < n-1)
{
sum = sum - arr[left] + arr[++right];
++left;
maxNum = max(maxNum, sum);
}
cout << maxNum;
}
|
cs |
너무 특정유형 문제만 풀다보니 골고루 풀기위해서 풀어봤다.
투포인터의 기본문제에서 아주 살짝 변형된 문제이다.
매 차례마다 right와 left를 1개씩 올려주면 연속된개수가 유지 되기 때문에, 오히려 코드작성하기가 더 쉽다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2157번 : 여행 (0) | 2024.06.22 |
---|---|
[Algorithm] Baekjoon 16234번 : 인구 이동 (0) | 2024.06.18 |
[Algorithm]Baekjoon 1029번 :: 그림교환 (1) | 2024.06.09 |
[Algorithm]Baekjoon 2166번 :: 다각형의 면적 (1) | 2024.06.09 |
[Algorithm]Baekjoon 2477번 :: 참외밭 (1) | 2024.06.09 |