티스토리 뷰
https://www.acmicpc.net/problem/1707
시간 초과 해결방법: readline 모듈 + 입력값을 모두 큐에 넣어주기.
입력값이 많을 때는 readLine 모듈과 큐를 함께 사용해서 구현
class Node{
constructor(item){
this.item = item;
this.next = null;
}
}
class Queue{
constructor(){
this.head = null;
this.tail = null;
this.length = 0;
}
push(item){
const node = new Node(item)
if(this.head==null){
this.head= node;
this.head.next = null;
}else{
this.tail.next = node;
}
this.tail = node;
this.length +=1;
}
pop(){
const popItem = this.head;
this.head = this.head.next;
this.length -=1;
return popItem.item;
}
size(){
return this.length;
}
empty(){
if(this.length==0){
return 1;
}else{
return 0;
}
}
front(){
if(this.empty()==1) return -1;
return this.head.item;
}
back(){
if(this.empty()==1) return -1;
return this.tail.item;
}
}
function solve(N,graphInfo) {
let answer = [];
for(let i = 0; i<N; i++){
let [V,E] = graphInfo.pop().split(' ').map(v=>+v);
let isVisited = new Array(V+1).fill(null);
let adj = [];
for(let j = 0; j<=V; j++){
adj.push(new Queue());
}
for(let k = 0; k<E; k++){
let [u,v] = graphInfo.pop().split(' ').map(v=>+v);
adj[u].push(v);
adj[v].push(u);
}
let l = 1;
let tempAnswer = 'YES'
while(l<=V && tempAnswer=='YES'){
if(isVisited[l]==null){
let q = new Queue();
isVisited[l] = true;
q.push(l);
while(!q.empty()&&tempAnswer=='YES'){
let now = q.pop();
let type = isVisited[now];
let arr = adj[now];
while(!arr.empty()){
let temp = arr.pop();
if(isVisited[temp]==type){
tempAnswer = 'NO'
break;
}else if(isVisited[temp]==null){
isVisited[temp]=!type;
q.push(temp)
}
}
}
}
l++;
}
answer.push(tempAnswer)
}
console.log(answer.join('\n'))
}
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let input = new Queue();
rl.on("line", function(line) {
input.push(line)
}).on("close", function() {
let n = +input.pop();
solve(n, input);
process.exit();
});
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1300번 : K번째 수 (0) | 2021.09.20 |
---|---|
Node.js) 백준 2206번 : 벽 부수고 이동하기. (1) | 2021.09.17 |
Node.js) 백준 7562번 : 나이트의 이동 (0) | 2021.09.17 |
Node.js) 백준 1697번 : 숨바꼭질 (0) | 2021.09.17 |
Node.js) 백준 7569번 : 토마토 (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 롱베케이션
- BFS
- 최소공통조상
- 다이나밍프로그래밍
- create databases;
- 서버점검
- create db
- 투포인터
- 면접질문
- 그래프
- 서버개발
- MySQL
- 투포인터 연습
- 개발자면접
- 다이나믹프로그래밍
- DB 생성
- 로드나인
- 면접비
- 은둔청년체험
- node.js
- MOD
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함