완주하지 못한 선수

Algorithm 2019. 8. 20. 09:58
반응형
  • 완주하지 못한 선수
  • darklight

    sublimevimemacs

    C++ 

문제 설명

수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다.

마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.

제한사항

  • 마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하입니다.
  • completion의 길이는 participant의 길이보다 1 작습니다.
  • 참가자의 이름은 1개 이상 20개 이하의 알파벳 소문자로 이루어져 있습니다.
  • 참가자 중에는 동명이인이 있을 수 있습니다.

입출력 예

participantcompletionreturn

[leo, kiki, eden] [eden, kiki] leo
[marina, josipa, nikola, vinko, filipa] [josipa, filipa, marina, nikola] vinko
[mislav, stanko, mislav, ana] [stanko, ana, mislav] mislav

입출력 예 설명

예제 #1
leo는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.

예제 #2
vinko는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.

예제 #3
mislav는 참여자 명단에는 두 명이 있지만, 완주자 명단에는 한 명밖에 없기 때문에 한명은 완주하지 못했습니다

 

 

참고 

https://medium.com/@alvaro.saburido/set-theory-for-arrays-in-es6-eb2f20a61848

 

Array intersection, difference and union in ES6

Today I bring you some ES6 magic for common Array algorithms that sometimes, we overthink, and they have a really easy one-lined solution

medium.com

https://bblog.tistory.com/300

 

자바스크립트의 유용한 배열 메소드 사용하기... map(), filter(), find(), reduce()

대부분의 간단한 로직은 배열로 표현이 가능하고 반복문으로 원하는 결과를 얻을 수 있습니다. 예를들어 DB에서 읽어온 거대한 데이터 리스트를 걸러내고 걸러내어 클라이언트가 원하는 모양으로 정제하죠. 하지만..

bblog.tistory.com

 

 

C#

핵심: 정렬 , 해시 

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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
 
namespace _04
{
    class Program
    {
        static void Main(string[] args)
        {
            var p = new Problem();
 
            //case1
            string[] participant = {"leo""kiki""eden"};
            string[] completion = {"eden""kiki"};
 
            //case 2
            // string[] participant = {"marina", "josipa", "nikola", "vinko", "filipa"};
            // string[] completion = {"josipa", "filipa", "marina", "nikola"};
 
            //case3
            // string[] participant = {"mislav", "stanko", "mislav", "ana"};
            // string[] completion = {"stanko", "ana", "mislav"};
 
            // var answer = p.Solution(participant, completion);
            // Console.WriteLine("answer: {0}", answer);
 
            var answer = p.Solution2(participant, completion);
            Console.WriteLine("answer: {0}", answer);
        }
    }
 
    public class Problem{
 
        public void Print(string[] arr){
            for(int i = 0; i<arr.Length; i++){
                Console.Write(arr[i] + " ");
            }
            Console.WriteLine();
        }
 
        public string Solution(string[] participant, string[] completion){
 
            HashSet<string> hash = new HashSet<string>();
            
            string answer = "";
            Array.Sort(participant);
            Array.Sort(completion);
 
            Print(participant);
            Print(completion);
 
            for(int i = 0; i<participant.Length; i++){
                if(i < completion.Length){
                    if(participant[i] == completion[i]){
                        if(hash.Contains(participant[i])){
                            Console.WriteLine("duplicated: " + participant[i]);
                            answer = participant[i];
                            break;
                        }else{
                            hash.Add(participant[i]);
                        }
                    }else{
                        Console.WriteLine("diff: " + participant[i]);
                        answer = participant[i];
                        break;
                    }
                }else{
                    Console.WriteLine("not included: " + participant[i]);
                    answer = participant[i];
                    break;
                }
            }
 
            return answer;
        }
 
        public string Solution2(string[] participant, string[] completion){
 
            Array.Sort(participant);
            Array.Sort(completion);
            
            int i;
 
            for(i = 0; i<completion.Length; i++){
                if(!participant[i].Equals(completion[i])){
                    return participant[i];
                }
            }
 
            return participant[i];
 
        }
    }
}
 
 
 

 

반응형

'Algorithm' 카테고리의 다른 글

위장  (0) 2019.08.20
전화번호 목록  (0) 2019.08.20
[js] 소수 구하기  (0) 2019.08.20
오픈채팅방  (0) 2019.08.19
Prime Number  (0) 2019.08.16
: