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 |
Tags
- Unity
- dfs
- 플레이어 방향전환
- dp 알고리즘
- pccp 기출문제 2번
- CSharp #자료구조
- 오브젝트 풀링
- 백준 c++ 9375번
- 충돌위험 찾기
- Back Tracking
- 프로그래머스
- C#
- Lv.3
- Hp바
- Ainimation Blending
- Lv2
- Blend Type
- Algorithm
- 연속 펄스 부분 수열의 합
- pccp 기출문제 3번
- Animation State Machine
- LayerMark
- 2D슈팅게임
- 양과 늑대
- 플레이어 이동
- pccp 기출문제 1번
- heap tree
- 미로 탈출 명령어
- 유니티
- 9375번
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C++] Lv.1 완주하지 못한 선수 본문
https://school.programmers.co.kr/learn/courses/30/lessons/42576
1. 정답코드 및 핵심 아이디어, 유의사항
- completion의 길이는 participant의 길이보다 1 작음
- 동명이인이 있을 수 있음
주석 참조
#include <string>
#include <vector>
#include <map>
using namespace std;
string solution(vector<string> participant, vector<string> completion)
{
string answer;
map<string, int> mapset;
for (auto elem : completion)
{
if (mapset.end() == mapset.find(elem))
mapset.insert({ elem, 1 });
else
mapset[elem]++;
}
for (auto elem : participant)
{
if (mapset.end() == mapset.find(elem))
return elem;
else
{
mapset[elem]--;
if (mapset[elem] < 0)
return elem;
}
}
return NULL;
}
+ 다른 풀이
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> participant, vector<string> completion)
{
sort(participant.begin(), participant.end());
sort(completion.begin(), completion.end());
for (int i = 0; i < completion.size(); i++)
if (participant[i] != completion[i])
return participant[i];
return participant[participant.size() - 1];
}
'CodingTest > Programmers Lv.1' 카테고리의 다른 글
[프로그래머스 C#] Lv.1 동영상 재생기 (PCCP 기출문제 1번) (0) | 2024.09.22 |
---|---|
[프로그래머스 C#] Lv.1 신고 결과 받기 (0) | 2024.02.14 |
[프로그래머스 C#] Lv.1 개인정보 수집 유효기간 (0) | 2024.02.13 |
[프로그래머스 C#] Lv.1 옹알이(2) (0) | 2024.01.15 |
[프로그래머스 C#] Lv.1 가장 많이 받은 선물 (0) | 2024.01.04 |