이쿠의 슬기로운 개발생활

함께 성장하기 위한 보안 개발자 EverNote 내용 공유

코딩테스트

[프로그래머스][C++] 조이스틱

이쿠우우 2022. 3. 22. 21:21
반응형

https://programmers.co.kr/learn/courses/30/lessons/42860

 

코딩테스트 연습 - 조이스틱

조이스틱으로 알파벳 이름을 완성하세요. 맨 처음엔 A로만 이루어져 있습니다. ex) 완성해야 하는 이름이 세 글자면 AAA, 네 글자면 AAAA 조이스틱을 각 방향으로 움직이면 아래와 같습니다. ▲ - 다

programmers.co.kr

 

글쓴이의 답

개인적인 풀이 임으로

이것보다 더 좋은 알고리즘은 많음...

이렇게도 풀이하는구나.. 공유하기 위해 올림...

#include <string>
#include <vector>
#include <iostream>

using namespace std;


int dfs(string result, string &name, int location, int count, int &answer, int moveCount) {
	if (result[location] != name[location]) {
        
		if (name[location] <= 'M') {
			while (name[location] != result[location]) {
				count++;	
                if (count >= answer) {
                    return 0;
                }
				result[location] += 1;				
                
			}
		}
		else {
			while (name[location] != result[location]) {
				count++;
                if (count >= answer) {
                    return 0;
                }
				if ('A' == result[location]) {
					result[location] = 'Z';
				}
				else {
					result[location] -= 1;
				}
			}
		}
	}

	if (result == name) {
		if (answer > count) {
			answer = count;
		}
		return 0;
	}


	count++;
	moveCount++;
    if (count >= answer) {
        return 0;
    }

	if (moveCount == result.size()) {
		return 0;
	}
	int nextLocation;
	nextLocation = location + 1;
	if (nextLocation == result.size()) {
		nextLocation = 0;
	}
	dfs(result, name, nextLocation, count, answer, moveCount);
	nextLocation = location - 1;
	if (nextLocation == -1) {
		nextLocation = result.size() - 1;
	}
	dfs(result, name, nextLocation, count, answer, moveCount);
	count--;
	moveCount--;

	return 0;

}

int solution(string name) {
	int answer = 9999999;

	string result = "";
	for (int i = 0; i < name.size(); i++) {
		result += "A";
	}
	int count = 0;
	int moveCount = 0;
	dfs(result, name, 0, count, answer, moveCount);
	dfs(result, name, 0, count, answer, moveCount);

	return answer;
}

 

 

꾸준히 하다보면 실력이 늘겠지..

반응형