티스토리 뷰
https://www.acmicpc.net/problem/24524
//https://www.acmicpc.net/problem/24524
const [S, T] = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const A = new Array(T.length).fill(0);
for (let i = 0; i < S.length; i++) {
const s = S[i];
if (!T.includes(s)) continue;
if (s == T[0]) A[0] += 1;
else {
const index = T.indexOf(s);
if (A[index - 1] > 0) {
A[index - 1] -= 1;
A[index] += 1;
}
}
}
console.log(A[A.length - 1]);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1918번: 후위 표기식 (0) | 2024.02.25 |
---|---|
Node.js) 백준 1655번: 가운데를 말해요 (0) | 2024.02.25 |
Node.js) 백준 1394번: 암호 (0) | 2024.02.14 |
Node.js) 백준 2295번: 세 수의 합 (0) | 2023.11.15 |
Node.js) 백준 2015번: 수들의 합 4 (0) | 2023.11.15 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- 면접비
- 면접질문
- 투포인터 연습
- 그래프
- node.js
- MOD
- create databases;
- 다이나밍프로그래밍
- MySQL
- 롱베케이션
- 다이나믹프로그래밍
- 투포인터
- 서버개발
- 은둔청년체험
- 동적프로그래밍
- BFS
- 최소공통조상
- DB 생성
- 로드나인
- 서버점검
- create db
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함