티스토리 뷰
https://www.acmicpc.net/problem/1897
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;
}
}
const input = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.trim());
const [D, N] = input.shift().split(' ');
let words = Array.from(Array(81), () => new Array());
input.forEach((word) => {
const length = word.length;
words[length].push(word);
});
let max = N;
const q = new Queue();
q.push(N);
while (q.length > 0) {
const now = q.pop();
const nowLength = now.length;
words[nowLength + 1].forEach((next) => {
// 한글자 차이인지 확인하고,
// 확인되면 큐에 넣기
if (check(now, next)) {
if (next.length > max.length) {
max = next;
}
q.push(next);
}
});
}
console.log(max);
function check(a, b) {
let diff = 0;
let j = 0;
for (let i = 0; i < a.length; i++) {
if (a[i] != b[j]) {
diff++;
i--;
}
if (diff == 2) {
return false;
}
j++;
}
return true;
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1715번: 카드 정렬하기 (0) | 2023.10.13 |
---|---|
Node.js) 백준 4803번: 트리 (0) | 2023.10.12 |
Node.js) 백준 27896번: 특별한 서빙 (0) | 2023.09.28 |
Node.js) 백준 10813번: 공 바꾸기 (0) | 2023.09.28 |
Node.js) 백준 16166번: 서울의 지하철 (0) | 2023.09.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create databases;
- 투포인터 연습
- DB 생성
- 서버개발
- BFS
- 면접비
- create db
- 로드나인
- 투포인터
- node.js
- 최소공통조상
- 롱베케이션
- MySQL
- 은둔청년체험
- 다이나믹프로그래밍
- 다이나밍프로그래밍
- 면접질문
- 서버점검
- 그래프
- 개발자면접
- 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 | 31 |
글 보관함