티스토리 뷰
https://www.acmicpc.net/problem/3078
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');
const [N, K] = input.shift().split(' ').map(Number);
const q = Array.from(Array(21), () => new Queue());
let answer = 0;
input.forEach((v, i) => {
const Len = v.trim().length;
while (q[Len].length > 0 && i - q[Len].head.item > K) q[Len].pop();
answer += q[Len].length;
q[Len].push(i);
});
console.log(answer);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2295번: 세 수의 합 (0) | 2023.11.15 |
---|---|
Node.js) 백준 2015번: 수들의 합 4 (0) | 2023.11.15 |
Node.js) 백준 10216번: Count Circle Goups (0) | 2023.11.10 |
Node.js) 백준 16120번: PPAP (0) | 2023.11.09 |
Node.js) 백준 13975번: 파일합치기 3 (1) | 2023.11.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접비
- create databases;
- 개발자면접
- 은둔청년체험
- create db
- DB 생성
- node.js
- 투포인터
- 서버점검
- 서버개발
- 다이나믹프로그래밍
- 로드나인
- 최소공통조상
- BFS
- 다이나밍프로그래밍
- 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 |
글 보관함