그래오늘은이거야

Codility 08. FrogRiverOne (Swift) 코딩테스트(알고리즘)CodeTest 본문

세상 개발/IOS(Swift)

Codility 08. FrogRiverOne (Swift) 코딩테스트(알고리즘)CodeTest

jinhongstar 2019. 7. 8. 11:54
728x90
반응형

요즘 온라인으로 코딩 테스트 하는 곳이 많습니다.

 

해외에 유명한 기업및 국내 잘나가는 IT기업들은 Codility 를 본다.

 

IBM, FIFAOnline, 11번가, 우아한형제들, 티몬, 쿠팡, Grab 등등..

 

저도 우아한형제들 코딩 테스트를 통하여 아래 사이트를 알게 되었습니다.

 

목적은 100% 

 

온라인 코딩 테스트 

 

제가 할 수 있는 언어는 :  Java(상), Object-c(상), Swift(중상), Android(상), C#(하), C,C++(하), SQL(하)

각각의 언어로 프로젝트 한번 이상 해봤습니다.

 

주종목 코드는 Object-c  인데 공부할겸 Swift로 테스트코딩

이 글이 누군가에겐 "약"이 되고 누군가에겐 "독"이 될 것이다.

개발자라면 적어도 기본 알고리즘 정도는 스스로 학습하여 풀어봐야 한다.참고로 코딩테스트 문제를 제출 한 심사위원 분도제 블로그에서 답을 확인 한다는 것을 역으로 알아두고 보세요!! ㅎㅎ

 

요즘 운동에만 신경쓰고 있어서 알고리즘을 다시 풀어 봤을때 너무 놀랐다...

 

나는 코딩을 잘 하고 생각하고 있었는데... 내가 고작 이정도 였을까...

 

총 20개 정도로 알고있다. 이걸 다 작성하고 100점을 목표로 작성해보겠습니다.

 

Lesson 1

Iterations

Lesson 2

Arrays

Lesson 3

Time Complexity

Lesson 4

Counting Elements

Lesson 5

Prefix Sums

Lesson 6

Sorting

Lesson 7

Stacks and Queues

Lesson 8

Leader

Lesson 9

Maximum slice problem

Lesson 10

Prime and composite numbers

Lesson 11

Sieve of Eratosthenes

Lesson 12

Euclidean algorithm

Lesson 13

Fibonacci numbers

Lesson 14

Binary search algorithm

Lesson 15

Caterpillar method

Lesson 16

Greedy algorithms

Lesson 17

Dynamic programming

Lesson 90

Tasks from Indeed Prime 2015 challenge

Lesson 91

Tasks from Indeed Prime 2016 challenge

Lesson 92

Tasks from Indeed Prime 2016 College Coders challenge

Lesson 99

Future training

 

테스트 할 수 있는 언어는 : 

C, C++, C#, Go, Java, Javascript, Kotlin, Lua, Object-c, Pascal, Perl, PHP, Python, Ruby, Scala, Swift4, VisualBasic

 

https://app.codility.com/

 

8.  FrogRiverOne

 

문제는 아래와 같습니다.

A small frog wants to get to the other side of a river. The frog is initially located on one bank of the river (position 0) and wants to get to the opposite bank (position X+1). Leaves fall from a tree onto the surface of the river.

You are given an array A consisting of N integers representing the falling leaves. A[K] represents the position where one leaf falls at time K, measured in seconds.

The goal is to find the earliest time when the frog can jump to the other side of the river. The frog can cross only when leaves appear at every position across the river from 1 to X (that is, we want to find the earliest moment when all the positions from 1 to X are covered by leaves). You may assume that the speed of the current in the river is negligibly small, i.e. the leaves do not change their positions once they fall in the river.

For example, you are given integer X = 5 and array A such that:

A[0] = 1 A[1] = 3 A[2] = 1 A[3] = 4 A[4] = 2 A[5] = 3 A[6] = 5 A[7] = 4

In second 6, a leaf falls into position 5. This is the earliest time when leaves appear in every position across the river.

Write a function:

public func solution(_ X : Int, _ A : inout [Int]) -> Int

that, given a non-empty array A consisting of N integers and integer X, returns the earliest time when the frog can jump to the other side of the river.

If the frog is never able to jump to the other side of the river, the function should return −1.

For example, given X = 5 and array A such that:

A[0] = 1 A[1] = 3 A[2] = 1 A[3] = 4 A[4] = 2 A[5] = 3 A[6] = 5 A[7] = 4

the function should return 6, as explained above.

Write an efficient algorithm for the following assumptions:

  • N and X are integers within the range [1..100,000];
  • each element of array A is an integer within the range [1..X].

    Copyright 2009–2019 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.

 

문제풀이(내용 해석):

지금까지 풀어본 문제중에 문제 이해도가 가장 어려웠습니다.

 

요즘 영어스터디를 하는데 약간의 도움이 되네요 ....

이걸 한국어로 표현하자면 .......

 

개구리가 강을 건너는데 최소한의 시간을 구하라는게 문제입니다.

 

풀이 내용은

 

A[0] = 1 A[1] = 3 A[2] = 1 A[3] = 4 A[4] = 2 A[5] = 3 A[6] = 5 A[7] = 4

X = 3 이면 4초가 된 시점에 강을 건너 갈 수있다고합니다. X = X + 1 (이게 배열계산을 풀어서 영문으로 작성한거 같기도하고...)

 

A는 나뭇잎의 위치인데 이게 해석해서 보려니까 너무 헷갈렸습니다.

 

A 배열에 있는 나뭇잎이 1초에 한번씩 떨어진 다고 생각하고요

X 가 3이면 3만큼 이동하고 3만큼 이동 후 다음 초에 빠져나갈 수있으니 + 1

 

개구리가 강을 빠져나갈때 X 의 값을 return 해주면되고요..

이동을 못하면 -1 을 리턴해주면 됩니다.

 

 

영어를 해석 해서 작성해 놓으니 제가 작성한 한국말이 더 어렵게 느껴지네요... ㅜㅜ

 

위에 내용대로만 이해하고 풀면 풀이가 쉬워 질 것 입니다.

 

 

import UIKit


var questionVal : [Int]
questionVal = [1, 3, 1, 4, 2, 3, 5,4]
let X = 3
var postionDic = [Int : Int]()

for (index,item) in questionVal.enumerated(){
    
    if item < X+1 {
        
        if let count = postionDic[item]{
            postionDic[item] = count + 1
        }else{
            postionDic[item] = 1
            if postionDic.keys.count == X{
                print(index) //이동경로
            }
        }
        
    }
    
}
print(-1)//이동못함

 

 

Buy Me A Coffee

 

100% 모든 문제를 백점! 도전!! ㅜㅜ

 

 

아.. 어떻게 진행해야 하는지 슬슬 감이오네요...

 

반응형
Comments