티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/42576
코딩테스트 연습 - 완주하지 못한 선수 | 프로그래머스
수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다. 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요. 제한사항 마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하입니다. completion의 길이는 partic
programmers.co.kr
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> participant, vector<string> completion) {
string answer = "";
sort(participant.begin(), participant.end());
sort(completion.begin(), completion.end());
for(int i=0; i<participant.size(); i++) {
if(completion[i] != participant[i]) {
return participant[i];
}
}
return answer;
}
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 단어 변환(level3) (0) | 2019.12.06 |
---|---|
[C++]프로그래머스 - 124 나라의 숫자(level2) (0) | 2019.12.06 |
[C++]프로그래머스 - 올바른 괄호의 갯수(level4) (0) | 2019.11.30 |
[C++]프로그래머스 - 디스크 컨트롤러(level3) (0) | 2019.11.30 |
[C++]프로그래머스 - 큰 수 만들기(level2) (0) | 2019.11.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 힙
- dictionary
- BOJ
- programmers
- 2019 Kakao Blind Recruitment
- hash
- left join
- C++
- 순열
- SWExpert
- 파이썬
- 문자열
- 괄호
- 재귀
- 완전탐색
- 프로그래머스
- 우선순위큐
- 딕셔너리
- 해시
- 코딩테스트
- 구현
- Python
- Permutation
- 문자열처리
- SW Expert
- 백준
- 정렬
- combination
- 2020 KAKAO BLIND RECRUITMENT
- 스택
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함