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



비트연산 문제인데, 이진수로 변환한 뒤에 문자열 비교를 통해 풀었다. 0이 들어오는 경우 이진수로 변환할 때 조심해주면 된다.


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
#include<iostream>
#include <string>
#include <vector>
using namespace std;
char map[17][17];
string decToBin(int dec, int n) {
    string bin = "";
    
    if (dec == 0) bin += "0";
    else {
        while (1) {
            if (dec == 0break;
            bin += to_string(dec % 2);
            dec /= 2;
        }
    }
    if (bin.length() < n) 
        for (int i = bin.length(); i < n; i++)
            bin += "0";
    
    string ret = "";
    for (int i = bin.length()-1; i >= 0; i--)
        ret += bin[i];
 
    return ret;
}
vector<string> solution(int n, vector<int> arr1, vector<int> arr2) {
    vector<string> answer;
    for (int i = 0; i < arr1.size(); i++) {
        string dec = decToBin(arr1[i], n);
        string dec2 = decToBin(arr2[i], n);
        for (int j = 0; j < n; j++) {
            if (dec[j] == '1') map[i][j] = '#';
            if (dec2[j] == '1') map[i][j] = '#';
        }
    }
 
    for (int i = 0; i < n; i++) {
        string ans = "";
        for (int j = 0; j < n; j++) {
            if (map[i][j] == '#') ans += '#';
            else
                ans += ' ';
         }
        answer.push_back(ans);
    }
    return answer;
}
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(0);
    solution(1, { 0 }, { 0 });
    return 0;
}
 
cs


+ Recent posts