๋ฌธ์
https://www.codetree.ai/training-field/frequent-problems/problems/tree-kill-all?page=4&pageSize=5
์ฝ๋ํธ๋ฆฌ | ์ฝ๋ฉํ ์คํธ ์ค๋น๋ฅผ ์ํ ์๊ณ ๋ฆฌ์ฆ ์ ์
๊ตญ๊ฐ๋ํ๊ฐ ๋ง๋ ์ฝ๋ฉ ๊ณต๋ถ์ ๊ฐ์ด๋๋ถ ์ฝ๋ฉ ์์ด๋ณด๋ถํฐ ๊ฟ์ ์ง์ฅ ์ฝํ ํฉ๊ฒฉ๊น์ง, ๊ตญ๊ฐ๋ํ๊ฐ ์์ ํ ์ปค๋ฆฌํ๋ผ์ผ๋ก ์ค๋นํด๋ณด์ธ์.
www.codetree.ai
๋ฐฐ์ด ์
- 3๊ฐ์ด์์ if ์กฐ๊ฑด ๋ถ๊ธฐ ํท๊ฐ๋ฆฌ์ง ์๊ธฐ
- ์ ๋ ฅ ๋ฐ์ดํฐ ํญ์์ฑ ๋ณด์ฅํ ๊ฒ
- ๊ฐ์ฒด ๊ด๋ฆฌ
์ฝ๋
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.StringTokenizer;
class TreeGroup {
int x, y;
int treeNum;
public TreeGroup(int x, int y, int treeNum) {
this.x = x;
this.y = y;
this.treeNum = treeNum;
}
}
public class Main {
static int N, M, K, C, answer;
static int[][] board;
static int[][] jecho;
static int[][] dxy = {{-1,0},{1,0},{0,-1},{0,1}};
static int[][] dxy2 = {{-1,-1},{1,1},{1,-1},{-1,1}};
static ArrayList<TreeGroup> trees = new ArrayList<>();
static ArrayList<Integer> spaceCount;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
K = Integer.parseInt(st.nextToken());
C = Integer.parseInt(st.nextToken());
board = new int[N][N];
jecho = new int[N][N];
answer = 0;
for(int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for(int j = 0; j < N; j++) {
board[i][j] = Integer.parseInt(st.nextToken());
if(board[i][j] != 0 && board[i][j] != -1) {
trees.add(new TreeGroup(i, j, board[i][j]));
}
}
}
simulation();
System.out.println(answer);
}
static void simulation() { // ์ ์ฒด ์๋ฎฌ๋ ์ด์
for(int t = 0; t < M; t++) {
spaceCount = new ArrayList<>();
growTree(); // ๋๋ฌด ์ฑ์ฅ
widenTree(); // ๋๋ฌด ํ์ฅ
searchRemoveTree();
}
}
static void growTree() {
// ์ธ์ ํ ๋ค๊ฐ์ ์นธ์ ๋ํด์ ๋๋ฌด๊ฐ ์๋ค๋ฉด ๊ทธ๋งํผ ์ฑ์ฅ ์ต๋ 4
for(int i = 0; i < trees.size(); i++) {
int spaceCnt = 0;
int adjTreeCnt = 0;
for(int d = 0; d < 4; d++) {
int nx = trees.get(i).x + dxy[d][0];
int ny = trees.get(i).y + dxy[d][1];
if(nx < 0 || ny < 0 || nx >= N || ny >= N) continue;
if(board[nx][ny] == 0 && jecho[nx][ny] == 0){
spaceCnt++;
}
if(board[nx][ny] > 0) {
adjTreeCnt++;
}
}
board[trees.get(i).x][trees.get(i).y] += adjTreeCnt;
trees.get(i).treeNum += adjTreeCnt;
spaceCount.add(spaceCnt);
}
}
static void widenTree() { // ๋๋ฌด ํ์ฅ
int[][] tempBoard = new int[N][N];
// ๋๋ฌด ์ฃผ๋ณ ๋น์นธ(๋๋ฌด ์๊ณ , ์ฅ์ ๋ฌผ ์๊ณ , ์ ์ด์ ์๋)
// ๋ง์ผ ๋ ๋๋ฌด์์ ํ๊ณณ์ ํ์ฅ์ ๋์์ ํ๋ค๋ฉด ๋ํด์ค
for(int i = 0; i < trees.size(); i++) {
if(spaceCount.get(i) == 0) continue;
TreeGroup tree = trees.get(i);
int childTreeNum = tree.treeNum / spaceCount.get(i);
for(int d = 0; d < 4; d++) {
int nx = tree.x + dxy[d][0];
int ny = tree.y + dxy[d][1];
if(nx < 0 || ny < 0 || nx >= N || ny >= N ) continue;
if(jecho[nx][ny] > 0) continue; // ์ ์ด์ ์๋์ง ์ฒดํฌ
if(board[nx][ny] != 0) continue; // ๋ค๋ฅธ ๋๋ฌด๊ฐ ์๋ ๊ณณ์ ์๋์ง ์ฒดํฌ
tempBoard[nx][ny] += childTreeNum;
}
}
for(int i = 0; i < N; i++) {
for(int j = 0; j < N; j++) {
if(tempBoard[i][j] != 0) {
board[i][j] = tempBoard[i][j];
trees.add(new TreeGroup(i, j, tempBoard[i][j]));
}
}
}
}
static void discountJecho() {
for(int i = 0; i < N; i++) {
for(int j = 0; j < N; j++) {
if(jecho[i][j] > 0) jecho[i][j] -= 1;
}
}
}
static void searchRemoveTree() { // ๋๊ฐ ๋ฐฉํฅ์ ์ ๊ฑฐํ ๋๋ฌด ์๋ฅผ ์ฐพ๋ ๋ฉ์๋
//์ ์ด์ ๊ฐ ์๋ ์นธ์ C๋
์ดํ์ ์ฌ๋ผ์ง ์ ์ด์ ์ ๋ํ ํ
์ด๋ธ ๋ฐ๋ก ๊ด๋ฆฌ
// ๋ง์ฝ ๋ฐ๋ฉธ์ํค๋ ๋๋ฌด์ ์๊ฐ ๋์ผํ ์นธ์ด ์๋ ๊ฒฝ์ฐ์๋ ํ์ด ์์ ์์๋๋ก, ๋ง์ฝ ํ์ด ๊ฐ์ ๊ฒฝ์ฐ์๋ ์ด์ด ์์ ์นธ์ ์ ์ด์ ๋ฅผ ๋ฟ๋ฆฌ๊ฒ ๋จ
int maxNum = -1;
TreeGroup maxNumTree = null;
for(int i = 0; i < trees.size(); i++) {
TreeGroup tree = trees.get(i);
int x = tree.x;
int y = tree.y;
if(board[x][y] > 0 && jecho[x][y] == 0) {
int cnt = countRemovableTree(x, y);
if(cnt > maxNum) {
maxNum = cnt;
maxNumTree = tree;
}
else if(cnt == maxNum) {
if(maxNumTree.x == tree.x) {
maxNumTree = maxNumTree.y < tree.y ? maxNumTree : tree;
}
else maxNumTree = maxNumTree.x < tree.x ? maxNumTree : tree;
}
}
}
if(maxNumTree != null) removeTree(maxNumTree.x, maxNumTree.y);
}
static int countRemovableTree(int x, int y) {
int cnt = board[x][y];
for(int d = 0; d < 4; d++) {
int nx = x;
int ny = y;
for(int i = 0; i < K; i++) {
nx += dxy2[d][0];
ny += dxy2[d][1];
if(nx < 0 || ny < 0 || nx >= N || ny >= N ) break;
if(board[nx][ny] == -1 || board[nx][ny] == 0) break;
cnt += board[nx][ny];
}
}
return cnt;
}
static void removeTree(int x, int y) {
discountJecho();
int numOfRemovedTree = board[x][y];
board[x][y] = 0;
removeTreeFromTrees(x,y);
jecho[x][y] = C;
for(int d = 0; d < 4; d++) {
int nx = x;
int ny = y;
for(int i = 0; i < K; i++) {
nx += dxy2[d][0];
ny += dxy2[d][1];
if(nx < 0 || ny < 0 || nx >= N || ny >= N ) break;
if(board[nx][ny] == -1 || board[nx][ny] == 0) {
jecho[nx][ny] = C;
break;
}
numOfRemovedTree += board[nx][ny];
board[nx][ny] = 0;
jecho[nx][ny] = C;
removeTreeFromTrees(nx, ny);
}
}
answer += numOfRemovedTree;
}
static void removeTreeFromTrees(int x, int y) {
for(int i = 0; i < trees.size(); i++) {
TreeGroup tree = trees.get(i);
if(tree.x == x && tree.y == y)trees.remove(i);
}
}
}
ํ์ด
1. ๋ฉ์๋ ์ ๋ฆฌ
๋ฉ์๋ ๋ช | ์ญํ | ๋น๊ณ |
main | - ์
๋ ฅ๋ฐ์ดํฐ ์ ์ฒ๋ฆฌ - turn ๋ณ ๊ณผ์ ์งํ - simulation ๋ฉ์๋ ํธ์ถ |
|
void simulation() | - simulation ์งํ 1. GrowTree() 2. WidenTree() 3. SearchRemoveTree() |
spaceCount ๋ฆฌ์คํธ ์ด๊ธฐํ : ๋งค ํด ๋ณ๋ก ํ์ฅ๋๋ ๊ฐ TreeGroup ๊ฐ์ฒด์ ๋ํ ์ฃผ๋ณ ๋น๊ณต๊ฐ ์๋ฅผ ์ ์ง์ํด |
void growTree() | - ์ธ์ ํ ๋ค ๊ฐ์ ์นธ๋ค์ ๋ํด์ TreeGroup์ด ์กด์ฌํ๋ฉด ์กด์ฌํ๋ ๋๋ฌด ์ ๋งํผ ๋๋ฌด ์๋ฅผ ํ์ฅ์ํด | |
void widenTree() | - ๋ฌธ์ ์์ ์ ์๋ ์กฐ๊ฑด๋ค์ ๋ฐํ์ผ๋ก ์ฃผ๋ณ ๋น ๊ณต๊ฐ(๋ฒฝ, ์ ์ด์ ๋ฟ๋ ค์ง ๊ณณ ์ ์ธ)์ ๋๋ฌด ๊ทธ๋ฃน ๋ด ๋๋ฌด์ ์๋ฅผ ๋น๊ณต๊ฐ์ ์๋ก ๋๋์ด ๋ชซ ๋งํผ ํ์ฅ์ํด | |
void discountJecho() | ์ ์ํ 2์ฐจ์ ๋ฐฐ์ด jecho ๋ฐฐ์ด์ ๋ํด ๊ธฐ์กด์ ์ ์ด์ ๊ฐ ๋ฟ๋ ค์ ธ ์๋ ์์ญ์ ๊ฐ์ 1 ๊ฐ์์ํด : ๋งค ํด๋ณ๋ก 1์ฉ ๊ฐ์ | |
void searchRemoveTree() | ํ ๋๋ฌด์ ๋ฟ๋ ธ์ ๋ ๋ ๊ฐ์ ๋๊ฐ์ ๋ฐฉํฅ์ผ๋ก ์ด๋ค ๋๋ฌด์ ๋ฟ๋ ค์ผ ๊ฐ์ฅ ๋ง์ ์์ ๋๋ฌด๋ค์ด ๋ฐ๋ฉธ๋๋์ง ์ฒดํฌํ๋ ๋ฉ์๋ | |
int countRemovableTree(int x, int y) | ๋๋ฌด๊ฐ ์์นํ ์ขํ์ ์ ์ด์ ๋ฅผ ์ดํฌํ๋ฉด ๋ช ๊ทธ๋ฃจ์ ๋๋ฌด๊ฐ ๋ฐ๋ฉธ๋๋์ง ์๋ฅผ ๋ฆฌํดํ๋ ๋ฉ์๋ | |
void removeTree(int x, int y) | ์ค์ ๋๋ฌด๋ฅผ ๋ฐ๋ฉธํ๋ ๋ฉ์๋ | |
void removeTreeFromTrees(int x, int y) | ๋๋ฌด ๊ทธ๋ฃน์์ ๋๋ฌด๋ฅผ ์ ๊ฑฐํ๋ ๋ฉ์๋(Trees ๋ฆฌ์คํธ์์ TreeGroup ๊ฐ์ฒด๋ฅผ ์ ๊ฑฐ) by ์ขํ๋น๊ต |
- ํด๋น ๋ฌธ์ ๋ ์ ๋ง ์๋ฎฌ๋ ์ด์ ๋ฌธ์ ์๋ค. ๋ฌธ์ ์์ ์ฃผ์ด์ง ์กฐ๊ฑด์ ๋ฐํ์ผ๋ก if ๋ถ๊ธฐ ์ฒ๋ฆฌ ๋ฐ ๊ฐ์ฒด ๊ด๋ฆฌ์ ์กฐํฉ์ผ๋ก ํธ๋ ๋ฌธ์ ์ฌ์ ๋ณ๋์ ์๊ณ ๋ฆฌ์ฆ ๊ฐ๋ ์ด ํ์ํ์ง ์์๋ค.
- ๊ทธ๋ํ ํ์์ ๋ฃ์ผ๋ ค๊ณ ํ๋ฉด ๋ฃ์ ์ ์๊ฒ ์ง๋ง ๊ทธ๋ฅ dxy(์ํ์ข์ฐ), dxy2(์ข์->์ฐํ, ์ฐ์->์ขํ ๋๊ฐ์ ๋ฐฉํฅ) ๋ฐฐ์ด์ ์ ์ธํด๋๊ณ ๋ฐ๋ณต๋ฌธ์ ๋๋ฆฌ๋ ๋ฐฉ์์ผ๋ก ๊ตฌํํ์๋ค.