Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 카카오 코테
- 구름톤 챌린지
- 백준 2108 nodejs
- 백준 1339번 js
- 자바스크립트 문자열 압축
- js 거리두기 확인하기
- 리액트쿼리 suspense
- next13 emotion
- app router emotion
- 사용성 개선
- js 스코프
- 스코프
- 구름톤 챌린지 회고
- suspense 동작원리
- emtion app router
- js
- suspense 비동기
- emotion RSC
- 자바스크립트 스코프
- 백준 2108 자바스크립트
- 백준 1339번 자바스크립트
- 옵셔널체이닝
- suspense 병목현상
- 구름톤
- 백준 1339번 nodejs
- 프로그래머스 거리두기 확인하기
- suspense react-query
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 프로그래머스 문자열 압축
- js 문자열 압축
Archives
- Today
- Total
Lennon FE
[백준 9935번] 문자열 폭발 - 자바스크립트(nodejs) 본문
728x90
반응형
https://www.acmicpc.net/problem/9935
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let input = [];
rl.on('line', function (line) {
input.push(line);
if (input.length === 2) {
rl.close();
}
}).on('close', function () {
const [str, explosionStr] = input;
console.log(solution(str, explosionStr));
});
function solution(str, str2) {
const arr = [];
Loop: for (let i = str.length - 1; i >= 0; i--) {
arr.push(str[i]);
if (arr.length >= str2.length && arr[arr.length - 1] === str2[0]) {
for (let j = 1; j < str2.length; j++) {
if (arr[arr.length - 1 - j] !== str2[j]) {
continue Loop;
}
}
for (let j = 0; j < str2.length; j++) {
arr.pop();
}
}
}
if (arr.length === 0) {
return 'FRULA';
} else {
return arr.reverse().join('');
}
}
간단한 문제이고, 문자열 문제임에도 replace로 풀면 메모리 초과가 난다.
split을 이용해도 메모리 초과가 난다. 최대 100만글자이기 때문에 스택을 이용해야 메모리 초과를 피할 수 있다.
끝부터 배열에 넣고, 배열의 길이가 폭발 문자열의 길이 이상이고, 배열의 끝 부분이 폭발 문자열의 첫 번째 숫자와 같으면
폭발 문자열인지 비교하고, 맞으면 폭발 문자열의 길이만큼 pop해준다.
이렇게 되면 메모리를 피하며 효율적으로 답을 구할 수 있다!
728x90
반응형
'🔥 Algorithm > Baekjoon' 카테고리의 다른 글
[백준 1759번] 암호 만들기 - 자바스크립트(nodejs) (0) | 2022.05.02 |
---|---|
[백준 14503번] 로봇청소기 - 자바스크립트(nodejs) (0) | 2022.04.30 |
[백준 14490번] 백대열 - 자바스크립트(nodejs) (0) | 2022.04.05 |
[백준 10610번] 30 - 자바스크립트(nodejs) (0) | 2022.04.05 |
[백준 11057번] 오르막 수 - 자바스크립트(nodejs) (0) | 2022.03.18 |
Comments