티스토리 뷰
https://www.acmicpc.net/problem/14397
const fs = require('fs');
const [n, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const [R, C] = n.split(' ').map(v => +v);
let answer = 0;
const board = []
for (let i = 0; i < R; i++) {
board.push([]);
if (i % 2 == 1) board[i].push('*');
for (let j = 0; j < C; j++) {
board[i].push(arr[i][j])
board[i].push(arr[i][j])
}
}
for (let i = 0; i < R; i++) {
for (let j = 0; j < board[i].length; j++) {
if (board[i][j] == '#') {
if (j > 0 && board[i][j - 1] == '.') {
answer++;
}
if (j < board[i].length - 1 && board[i][j + 1] == '.') {
answer++;
}
if (i > 0 && board[i - 1][j] == '.') {
answer++;
}
if (i < R - 1 && board[i + 1][j] == '.') {
answer++;
}
}
}
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 11558번: The Game of Death (0) | 2021.09.21 |
---|---|
Node.js)백준 1388번: 바닥 장식 (0) | 2021.09.21 |
Node.js) 백준: Best Grass (0) | 2021.09.20 |
Node.js) 백준 16173번: 점프왕 쩰리 (0) | 2021.09.20 |
Node.js) 백준 1300번 : K번째 수 (0) | 2021.09.20 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접비
- 롱베케이션
- 다이나믹프로그래밍
- create db
- 다이나밍프로그래밍
- create databases;
- 동적프로그래밍
- node.js
- 그래프
- 개발자면접
- MySQL
- 서버점검
- 은둔청년체험
- 투포인터
- 면접질문
- DB 생성
- BFS
- 서버개발
- 최소공통조상
- 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 |
글 보관함