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
- NRVO
- 오블완
- RootMotion
- winapi
- baekjoon
- GeeksForGeeks
- DirectX11
- 백준
- Unreal Engine5
- 줄 세우기
- 프로그래머스
- C
- IFileDialog
- UnrealEngine4
- Programmers
- const
- 2294
- 팰린드롬 만들기
- DeferredRendering
- 티스토리챌린지
- 언리얼엔진5
- C++
- directx
- UE5
- 1563
- UnrealEngine5
- algorithm
- RVO
- Frustum
- softeer
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 13144번 :: List of Unique Numbers 본문
Algorithm/Baekjoon
[Algorithm]Baekjoon 13144번 :: List of Unique Numbers
MaxLevel 2024. 10. 29. 20:33https://www.acmicpc.net/problem/13144
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
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
using namespace std;
long long n;
int arr[100001] = { 0 };
int check[100001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 1; i <= n; ++i)
{
cin >> arr[i];
}
long long answer = 0;
check[arr[1]] = 1;
int start = 1;
int end = 1;
for (int i = 0; i < n; ++i) // 카운팅용. i 안씀. n번만큼만 ++start함.
{
while (end + 1 <= n && check[arr[end + 1]] == 0)
{
++end;
++check[arr[end]]; // 체크 (수열에 포함)
}
answer += end - start + 1;
--check[arr[start]]; // 수열에서 제외
++start;
}
cout << answer;
}
|
cs |
중복된 숫자가 없는 연속된수열들의 개수를 구하는 문제이다.
투포인터를 이용해야만 적절한 시간내에 해결할 수 있다.
친절한 설명은 아래글이 굿
https://codingnotes.tistory.com/182
start를 한단계씩 올리는거는 결국 최대 n번이기 때문에 for문으로 했다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 15661번 :: 링크와 스타트 (0) | 2024.10.30 |
---|---|
[Algorithm]Baekjoon 3649번 :: 로봇 프로젝트 (0) | 2024.10.29 |
[Algorithm]Baekjoon 1774번 :: 우주신과의 교감 (0) | 2024.10.28 |
[Algorithm]Baekjoon 2211번 :: 네트워크 복구 (0) | 2024.10.28 |
[Algorithm]Baekjoon 2617번 :: 구슬 찾기 (0) | 2024.10.28 |