JS
const fs = require('fs');
const [range, ...input] = fs.readFileSync('input.txt', 'utf8').trim().split('\n');
let box = input.map(v => v.split('').map(Number));
let nextGroup = 2;
const count = [0,0];
function DFS(x, y) {
box[x][y] = nextGroup;
count[nextGroup]++;
if (box[x - 1] && box[x - 1][y] === 1) DFS(x - 1, y);
if (box[x + 1] && box[x + 1][y] === 1) DFS(x + 1, y);
if (box[x] && box[x][y + 1] === 1) DFS(x, y + 1);
if (box[x] && box[x][y -...
- 연습문제 톡
- 날짜
- 2024-11-08 11:37:42
- 작성자
- vavoya6324
- 댓글
- 0