티스토리 뷰
https://www.acmicpc.net/problem/7576
시간초과가 발생했는데 반복문에 이상이 없다면..
배열을 큐나 스택 덱으로 구현하면 통과할 수도 있다.
시간초과 코드 (배열)
const fs = require('fs');
const [table, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const [C,R] = table.split(' ').map(v=>+v);
let tomato = arr.map(v=>v.split(' ').map(w=>+w));
tomato.unshift(new Array(C).fill(-1))
tomato.push(new Array(C).fill(-1))
tomato.forEach((_,i)=>{
tomato[i].unshift(-1);
tomato[i].push(-1);
})
let q = [];
let unripe = 0;
let days = 0;
tomato.forEach((v,y)=>{
v.forEach((v2,x)=>{
if(v2==1){
q.push([y,x,1]);
}
if(v2==0){
unripe++;
}
})
})
while(q.length>0){
let [y,x,c] = q.shift();
if(c>days) days = c;
if(tomato[y-1][x]==0){
tomato[y-1][x]=1;
q.push([y-1,x,c+1])
unripe--;
}
if(tomato[y+1][x]==0){
tomato[y+1][x]=1;
q.push([y+1,x,c+1])
unripe--;
}
if(tomato[y][x-1]==0){
tomato[y][x-1]=1;
q.push([y,x-1,c+1])
unripe--;
}
if(tomato[y][x+1]==0){
tomato[y][x+1]=1;
q.push([y,x+1,c+1])
unripe--;
}
}
if(unripe!=0){
console.log(-1);
}else{
console.log(days-1)
}
통과 코드
const fs = require('fs');
const [table, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const [C,R] = table.split(' ').map(v=>+v);
let tomato = arr.map(v=>v.split(' ').map(w=>+w));
tomato.unshift(new Array(C).fill(-1))
tomato.push(new Array(C).fill(-1))
tomato.forEach((_,i)=>{
tomato[i].unshift(-1);
tomato[i].push(-1);
})
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;
}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;
}
}
let q = new Queue();
let unripe = 0;
let days = 0;
tomato.forEach((v,y)=>{
v.forEach((v2,x)=>{
if(v2==1){
q.push([y,x,0]);
}
if(v2==0){
unripe++;
}
})
})
while(!q.empty()){
let [y,x,c] = q.pop();
if(c>days) days = c;
if(tomato[y-1][x]==0){
tomato[y-1][x]=1;
q.push([y-1,x,c+1])
unripe--;
}
if(tomato[y+1][x]==0){
tomato[y+1][x]=1;
q.push([y+1,x,c+1])
unripe--;
}
if(tomato[y][x-1]==0){
tomato[y][x-1]=1;
q.push([y,x-1,c+1])
unripe--;
}
if(tomato[y][x+1]==0){
tomato[y][x+1]=1;
q.push([y,x+1,c+1])
unripe--;
}
}
if(unripe!=0){
console.log(-1);
}else{
console.log(days)
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 7569번 : 토마토 (0) | 2021.09.16 |
---|---|
Node.js) 백준 2178번 : 미로 탐색 (0) | 2021.09.16 |
Node.js) 백준 1012번 : 유기농 배추 (0) | 2021.09.16 |
Node.js) 백준 2667번 : 단지 번호 붙이기 (0) | 2021.09.16 |
Node.js) 백준 2606번 : 바이러스 (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create databases;
- 면접비
- DB 생성
- 면접질문
- 그래프
- MOD
- 롱베케이션
- 서버개발
- 서버점검
- 로드나인
- 다이나믹프로그래밍
- create db
- 동적프로그래밍
- 투포인터 연습
- 은둔청년체험
- BFS
- 개발자면접
- node.js
- 최소공통조상
- 다이나밍프로그래밍
- 투포인터
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함