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
- DirectX11
- UnrealEngine4
- 줄 세우기
- 프로그래머스
- baekjoon
- UE5
- NRVO
- DeferredRendering
- IFileDialog
- 1563
- 2294
- const
- GeeksForGeeks
- UnrealEngine5
- RootMotion
- RVO
- winapi
- Frustum
- directx
- 티스토리챌린지
- algorithm
- 백준
- C++
- Unreal Engine5
- Programmers
- 팰린드롬 만들기
- C
- softeer
- 오블완
- 언리얼엔진5
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 로또의 최고순위와 최저순위 본문
https://school.programmers.co.kr/learn/courses/30/lessons/77484?language=cpp
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
|
vector<int> solution(vector<int> lottos, vector<int> win_nums) {
vector<int> answer;
int winNum[46] = { 0 };
int correctCount = 0;
int zeroCount = 0;
for (int i = 0; i < win_nums.size(); i++)
{
winNum[win_nums[i]] = 1;
}
for (int i = 0; i < lottos.size(); i++)
{
if (winNum[lottos[i]]) correctCount++;
if (lottos[i] == 0) zeroCount++;
}
int max = 7 - correctCount - zeroCount;
int min = 7 - correctCount;
if (max >= 6) max = 6;
if (min >= 6) min = 6;
answer.push_back(max);
answer.push_back(min);
return answer;
}
|
cs |
1레벨짜리 쉬운 문제다. 두 배열의 값을 비교해야하는데, 로또번호는 최대 6개라 배열사이즈도 6밖에 안되서 그냥 2중 for문으로 값비교를 해도 통과가 되긴 했을 것이다. 하지만 이런 문제에서라도 그런 값비교는 안할 수 있으면 최대한 안하는 게 좋고, 당첨번호를 룩업테이블처럼 저장한다음 내 번호랑 맞는지 배열접근을 통해 비교하는게 효율적이다.
배열의 원소에 접근하는 시간복잡도는 O(1)이라서 배열의 사이즈가 클수록 시간차이는 어마어마할것이다.
애초에 그런문제는 2중for문 쓰면 아예 효율성에서 컷해버릴 가능성이 크긴 하다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 오픈채팅방 (0) | 2022.07.15 |
---|---|
[Algorithm] Programmers :: 문자열 압축 (0) | 2022.07.14 |
[Algorithm] Programmers :: 뉴스클러스터링 (0) | 2022.07.08 |
[Algorithm] Programmers :: 이중우선순위큐 (0) | 2022.06.09 |
[Algorithm] Programmers :: 디스크 컨트롤러 (CPU스케줄링 비선점형 SJF알고리즘) (0) | 2022.06.06 |