카카오 2018 - 비밀지도

phoenixKim·2021년 8월 31일
0

카카오 기출문제

목록 보기
7/24

풀이전략

  • 비트연산자를 이용한 문제이다.

| 연산자

: 비트 비교시 하나만 1이어도 1임

^ 연산자

: 비트 비교시 한개만 1이어야 1임

& 연산자

: 비트 비교시 둘다 1이어야 1임

소스코드

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

//17:44 ~ 
vector<string> solution(int n, vector<int> arr1, vector<int> arr2) {
    vector<string> answer;
    
    for(int h = 0; h < n; h++)
    {
        int m = arr1[h] | arr2[h];
        
        string result = "";
        for(int i = 0; i < n; i++)
        {
            if(m & (1 << i))
            {
                result += "#";
            }
            else
            {
                result += " ";
            }
        }
        reverse(result.begin(), result.end());
        answer.push_back(result);
    }
    
    return answer;
}

profile
🔥🔥🔥

0개의 댓글

관련 채용 정보