프로그래머스/lv2

프로그래머스 : 영어 끝말잇기(lv2) C++

TIN9 2022. 10. 19.
반응형

프로그래머스 링크

https://school.programmers.co.kr/learn/courses/30/lessons/12981

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr


#include <string>
#include <vector>
#include <iostream>
#include <cmath>
#include <unordered_map>

using namespace std;

vector<int> solution(int n, vector<string> words) {
    vector<int> answer;

    unordered_map<string, bool> mapIsSaved;
    size_t Size = words.size();

    mapIsSaved.insert(make_pair(words[0], true));

    for (size_t i = 1; i < Size; ++i)
    {
        // 나머지 연산자를 이용해서 몇번째 사람인지 알 수 있음.
        // 0 이라면 n % n이 되는것이기 때문에 PersonNumb값은 n이됨.
        int PersonNumb = (i + 1) % n;

        if (PersonNumb == 0)
        {
            PersonNumb = n;
        }

        size_t StringSize = words[i - 1].size();

        // ex) 이전 인덱스의 hello의 o와(마지막 인덱스) 현재 인덱스의 0번 값이랑 다르다면 break
        if (words[i - 1][StringSize - 1] != words[i][0])
        {
            // 0인덱스부터 계산하는데 실제 카운트는 1 부터 하고있기 때문이다
            float Count = ceil(((float)(i + 1) / (float)n));
            answer.push_back(PersonNumb);
            answer.push_back(static_cast<int>(Count));

            break;
        }

        unordered_map<string, bool>::iterator Enable = mapIsSaved.find(words[i]);

        // end랑 같다는것은 못찾았다는 의미이다 그러므로 insert
        if (Enable == mapIsSaved.end())
        {
            mapIsSaved.insert(make_pair(words[i], true));
        }
        else
        {
            float Count = ceil(((float)(i + 1) / (float)n));
            answer.push_back(PersonNumb);
            answer.push_back(static_cast<int>(Count));
            break;
        }
    }

    if (answer.empty())
    {
        answer.push_back(0);
        answer.push_back(0);
    }

    return answer;
}

반응형

댓글