class MinHeap { constructor() { this.heap = []; } empty() { if (this.heap.length == 0) { return true; } return false; } swap(arr, x, y) { let temp = arr[x]; arr[x] = arr[y]; arr[y] = temp; return; } insert(value) { this.heap.push(value); this.bubbleUp(); } bubbleUp() { let currentIndex = this.heap.length - 1; while (currentIndex > 0) { const parentIndex = Math.floor((currentIndex - 1) / 2); if (..
https://www.acmicpc.net/problem/1927 1927번: 최소 힙 첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 0 www.acmicpc.net const fs = require('fs'); const [_, ...input] = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); const num = input.map(v => +v); class MinHeap { constructor() { this.heap = []; } empty() { if (this.h..
class MaxHeap { constructor() { this.heap = []; } swap(arr, x, y) { let temp = arr[x]; arr[x] = arr[y]; arr[y] = temp; return; } empty() { if (this.heap.length == 0) { return true; } return false; } insert(value) { this.heap.push(value); this.bubbleUp(); } bubbleUp() { let currentIndex = this.heap.length - 1; while (currentIndex > 0) { const parentIndex = Math.floor((currentIndex - 1) / 2); if (..
https://www.acmicpc.net/problem/11279 11279번: 최대 힙 첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 www.acmicpc.net const fs = require('fs'); const [_, ...input] = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); const num = input.map(v => +v); class MaxHeap { constructor() { this.heap = []; } empty() { if (this.h..
https://www.acmicpc.net/problem/2110 2110번: 공유기 설치 첫째 줄에 집의 개수 N (2 ≤ N ≤ 200,000)과 공유기의 개수 C (2 ≤ C ≤ N)이 하나 이상의 빈 칸을 사이에 두고 주어진다. 둘째 줄부터 N개의 줄에는 집의 좌표를 나타내는 xi (0 ≤ xi ≤ 1,000,000,000)가 www.acmicpc.net 😑 도움이 된 테스트케이스 3 3 1 4 6 answer 2 2 2 6 5 answer 1 4 3 999999985 999999991 999999996 1000000000 answer 6 const fs = require('fs'); const [A,...B] = fs.readFileSync("./dev/stdin").toString().trim..
https://www.acmicpc.net/problem/2805 2805번: 나무 자르기 첫째 줄에 나무의 수 N과 상근이가 집으로 가져가려고 하는 나무의 길이 M이 주어진다. (1 ≤ N ≤ 1,000,000, 1 ≤ M ≤ 2,000,000,000) 둘째 줄에는 나무의 높이가 주어진다. 나무의 높이의 합은 항상 M보 www.acmicpc.net 최초 max값을 구할 때 Math.max() 함수 써서 구했더니 StackSizeExceeded 이 에러가 계속 떠서 Math.max() 사용하지 않고 구했더니 해결됨. const fs = require('fs'); const [n,t] = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); cons..
https://www.acmicpc.net/problem/1654 1654번: 랜선 자르기 첫째 줄에는 오영식이 이미 가지고 있는 랜선의 개수 K, 그리고 필요한 랜선의 개수 N이 입력된다. K는 1이상 10,000이하의 정수이고, N은 1이상 1,000,000이하의 정수이다. 그리고 항상 K ≦ N 이다. 그 www.acmicpc.net 이분탐색에서 while문 조건식이 min=N){ if(mid>answer) answer=mid; min=mid+1; }else{ max=mid-1 } } console.log(answer)
https://www.acmicpc.net/problem/10816 10816번: 숫자 카드 2 첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10, www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); const K = input[1].split(' ').map(v=>+v); const M = input[3].split(' ').map(v=>+v); K.sort((a,b)=>a-b)..
- Total
- Today
- Yesterday
- 다이나믹프로그래밍
- 그래프
- 개발자면접
- MySQL
- MOD
- 면접질문
- 투포인터 연습
- BFS
- 면접비
- 투포인터
- 최소공통조상
- 다이나밍프로그래밍
- 서버개발
- DB 생성
- 로드나인
- 동적프로그래밍
- create db
- 서버점검
- 은둔청년체험
- node.js
- create databases;
- 롱베케이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |