728x90
https://www.acmicpc.net/problem/9082
첫번째 위치, 마지막 위치, 나머지 위치 이렇게 세 구간으로 나눠서
주변 위치에 있는 지뢰 수가 모두 0이 아니라면 모두 -1 처리를 하고, 지뢰 카운트를 +1 한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int n, num;
static char[] nArr;
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
for (int i = 0; i < n; i++) {
num = Integer.parseInt(br.readLine());
int[] numArr = new int[num];
nArr = br.readLine().toCharArray();
for (int k=0;k<num;k++) {
numArr[k] = nArr[k] - '0';
}
char[] arr = br.readLine().toCharArray();
int result = 0;
for (int j = 0; j < num; j++) {
if (j == 0) {
if (numArr[j] != 0 && numArr[j + 1] != 0) {
numArr[j]--;
numArr[j + 1]--;
result++;
}
} else if (j == num - 1) {
if (numArr[j - 1] != 0 && numArr[j] != 0) {
numArr[j]--;
numArr[j - 1]--;
result++;
}
} else {
if (numArr[j - 1] != 0 && numArr[j] != 0 && numArr[j + 1] != 0) {
numArr[j - 1]--;
numArr[j]--;
numArr[j + 1]--;
result++;
}
}
}
System.out.println(result);
}
}
}
'Java' 카테고리의 다른 글
[백준 1508] 레이스 (JAVA) (0) | 2023.05.31 |
---|---|
[백준 8980] 택배 (JAVA) (0) | 2023.05.31 |
[백준 21620] 마법사 상어와 비바라기 (JAVA) (0) | 2023.05.30 |
[백준 15685] 드래곤 커브(JAVA) (0) | 2023.05.30 |
[백준 2573] 빙산 (JAVA) (1) | 2023.05.25 |