티스토리 뷰
https://www.acmicpc.net/problem/1920
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const A = input[1].split(' ').map(v=>+v);
const B = input[3].split(' ').map(v=>+v);
A.sort((a,b)=>a-b)
let answer = [];
B.forEach(v=>{
let left = 0;
let right = A.length-1;
let find = false;
while(left<=right){
let mid = Math.floor((right+left)/2);
if(A[mid]>v){
right = mid-1;
}else if(A[mid]<v){
left=mid+1;
}else{
find=true;
break;
}
}
if(find){
answer.push(1);
}else{
answer.push(0);
}
})
console.log(answer.join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1654번 : 랜선 자르기 ★ (0) | 2021.09.14 |
---|---|
Node.js) 백준 10816번 : 숫자 카드 2 (0) | 2021.09.14 |
Node.js) 백준 1780번 : 종이의 개수 (0) | 2021.09.14 |
Node.js) 백준 1992번 : 쿼드트리 (0) | 2021.09.14 |
Node.js) 백준 2630번 : 색종이 만들기 (0) | 2021.09.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접질문
- DB 생성
- 투포인터
- 은둔청년체험
- 최소공통조상
- BFS
- 다이나밍프로그래밍
- 면접비
- 동적프로그래밍
- 다이나믹프로그래밍
- 서버개발
- MySQL
- 개발자면접
- node.js
- 로드나인
- create databases;
- 투포인터 연습
- MOD
- 롱베케이션
- 그래프
- create db
- 서버점검
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함