๋ฌธ์ (์ถ์ฒ: https://www.acmicpc.net/problem/10469)
< ์ฌ์ด ๋์ ์ฌ์๋ค >
๋ฌธ์ ํ์ด
์, ํ, ์ข, ์ฐ, ๋๊ฐ์ ์ผ๋ก ์ ํ ์์ด ์ด๋ํ์ ๋ ๋ค๋ฅธ ์ฌ์์ด ์กด์ฌํ๋์ง ํ์ธํ๋ค.
*์ฌ์์ด 8๊ฐ๊ฐ ์๋๋ผ๋ฉด ์ฌ๋ฐ๋ฅด์ง ์๋ค.
my solution (Java)
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
public class _10469_ { // ์ฌ์ด ๋์ ์ฌ์๋ค
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
boolean visited[][] = new boolean[8][8];
Queue<int[]> queue = new LinkedList<>();
for (int i = 0; i < 8; i++) {
String str = bf.readLine();
for (int j = 0; j < 8; j++) {
if (str.charAt(j) == '*') {
visited[i][j] = true;
queue.add(new int[] { i, j });
}
}
}
int dx[] = { -1, 1, 0, 0, -1, -1, 1, 1 };
int dy[] = { 0, 0, -1, 1, -1, 1, -1, 1 };
boolean flag = false;
if (queue.size() != 8) {
flag = true;
}
while (!queue.isEmpty() && !flag) {
int temp[] = queue.poll();
for (int i = 0; i < 8; i++) {
int x = temp[0], y = temp[1];
while (x + dx[i] >= 0 && x + dx[i] < 8 && y + dy[i] >= 0 && y + dy[i] < 8) {
x += dx[i];
y += dy[i];
if (visited[x][y]) {
flag = true;
break;
}
}
if (flag) {
break;
}
}
}
if (flag) {
System.out.println("invalid");
} else {
System.out.println("valid");
}
}
}
๋ณ์)
visited : ์ฌ์ ์กด์ฌ ์ฌ๋ถ
queue : ์ฌ์ ์์น
str : ์ ๋ ฅ
dx, dy : ์, ํ, ์ข, ์ฐ, ๋๊ฐ์
flag : ์ฌ๋ฐ๋ฅธ ํด๋ฒ ์ฌ๋ถ
8x8 ์ฒด์คํ์ ์ ๋ณด๋ฅผ ์ ๋ ฅ๋ฐ์ผ๋ฉฐ ์ฌ์์ด ์์นํ ๊ณณ์ด๋ฉด visited๋ฅผ true๋ก, queue์ ์์น๋ฅผ ์ ์ฅํ๋ค. ๋ง์ฝ queue์ ํฌ๊ธฐ๊ฐ 8์ด ์๋๋ผ๋ฉด ์ฌ์์ด 8๊ฐ๊ฐ ์๋๋ฏ๋ก flag๋ฅผ true๋ก ์ ์ฅํ๋ค. queue๊ฐ ๋น์ด์์ง ์๊ณ flag๊ฐ false๋ผ๋ฉด ๋ค์ ๊ณผ์ ์ ๋ฐ๋ณตํ๋ค.
1) queue poll
2) 8๊ฐ์ ๋ฐฉํฅ์ผ๋ก ์ฒด์คํ ๋ฒ์ ์์ ์์ ๋๊น์ง ์ด๋
3) ๋ง์ฝ ์ด๋ ์์น์ ๋ค๋ฅธ ์ฌ์์ด ์๋ค๋ฉด flag๋ฅผ true๋ก ์ ์ฅ ๋ฐ ์ข ๋ฃ
flag๊ฐ true๋ผ๋ฉด "invalid"๋ฅผ ์ถ๋ ฅํ๊ณ false๋ผ๋ฉด "valid"๋ฅผ ์ถ๋ ฅํ๋ค.

'๐Algorithm > ๐ฅBaekjoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Baekjoon] 14534_String Permutation (0) | 2025.02.25 |
---|---|
[Baekjoon] 9492_Perfect Shuffle (0) | 2025.02.24 |
[Baekjoon] 3230_๊ธ๋ฉ๋ฌ, ์๋ฉ๋ฌ, ๋๋ฉ๋ฌ์ ๋๊ฐ? (1) | 2025.02.20 |
[Baekjoon] 4446_ROT13 (0) | 2025.02.19 |
[Baekjoon] 15235_Olympiad Pizza (1) | 2025.02.18 |