Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스마일게이트
- 소감
- 1편
- Union-find
- BaekJoon
- c++
- 투포인터
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- Algorithm
- BFS
- 코딩테스트
- 보석쇼핑
- 유니온파인드
- 삼성 #코테 #2020상반기 #c++
- 카카오
- 코테
- 백준
- Smilegate
- 알고리즘
- 카카오인턴
- 서버개발캠프
- LIS #Algorithm #요소추적
- 식단
- 중반부
Archives
- Today
- Total
짱아의 개발 기록장
2018 KAKAO BLIND RECRUITMENT : 비밀 지도 (c++) / Bitmask 본문
반응형
비트 마스크로 푸는 문제였다.
추후 설명 추가 예정
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
|
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int cal(int num){
int temp = num;
string s = "";
while(temp!=0){
s = to_string(temp%2)+s;
temp /= 2;
}
int bitmask = 0;
int cnt = 0;
for(int i=s.size()-1; i>=0; i--){
cnt++;
if(s[i]=='0') continue;
bitmask |= (1<<(cnt-1));
}
return bitmask;
}
vector<string> solution(int n, vector<int> arr1, vector<int> arr2) {
vector<string> answer;
// bitmask형태로 만들기
vector<int> v1;
for(int i=0; i<n; i++){
v1.push_back(cal(arr1[i]));
}
vector<int> v2;
for(int i=0; i<n; i++){
v2.push_back(cal(arr2[i]));
}
// 전체 지도 -> 두 장의 지도를 or연산하기
for(int i=0; i<n; i++){
int temp = (v1[i] | v2[i]);
string s = "";
for(int j=1; j<=n; j++){
if((temp & (1<<(j-1))) != 0){
s = "#"+s;
}else{
s = " "+s;
}
}
answer.push_back(s);
}
return answer;
}
|
cs |
반응형
Comments