Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- Expanding Polytope Algorithm
- Doubly Connected Edge List
- c#
- 우분투
- C
- linux
- 분할축 이론
- 문제풀이
- 보로노이다이어그램
- Graham Scan
- C++
- 충돌 알고리즘
- 내적
- 수학
- 알고리즘
- dp
- AABB
- Vector
- PS
- uclidean algorithm
- SOH
- 유니티
- ubuntu
- 외적
- Unity
- 리눅스
- 벡터
- 다이나믹 프로그래밍
- GJK
Archives
- Today
- Total
마이 플밍 블로그
백준 7569 토마토 본문
#include<cstdio>
#include<iostream>
#include<queue>
#include <string>
using namespace std;
int M, N;
int box[1001][1001];
int Dx[4] = { -1,0,1,0 };
int Dy[4] = { 0,-1,0,1 };
int Day = 0;
int NotRipeTomatoNum = 0;
bool isInside(int x, int y) {
if (0 <= x && x < M && 0 <= y && y < N) {
return true;
}
return false;
}
bool RipeTomatoes(vector<int> &RipeTomatoX, vector<int> &RipeTomatoY) {
int RipeTomatoIndex = 0;
vector<int> RipeTomatoXpos;
vector<int> RipeTomatoYpos;
for(int i = 0; i < RipeTomatoX.size();i++)
{
int xPos = RipeTomatoX[i];
int yPos = RipeTomatoY[i];
for (int i = 0; i < 4; i++) {
int boxX = xPos + Dx[i];
int boxY = yPos + Dy[i];
if (isInside(boxX, boxY)) {
if (box[boxX][boxY] == 0) {
box[boxX][boxY] = 1;
RipeTomatoIndex++;
NotRipeTomatoNum--;
RipeTomatoXpos.push_back(boxX);
RipeTomatoYpos.push_back(boxY);
}
}
}
}
if (NotRipeTomatoNum == 0) {
if(RipeTomatoIndex > 0)
Day++;
return true;
}
else if (RipeTomatoIndex > 0) {
Day++;
return RipeTomatoes(RipeTomatoXpos, RipeTomatoYpos);
}
return false;
}
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> M >> N;
vector<int> RipeTomatoX;
vector<int> RipeTomatoY;
for (int y = 0; y < N; y++) {
for (int x = 0; x < M; x++) {
cin >> box[x][y];
if (box[x][y] == 0)
NotRipeTomatoNum++;
else if (box[x][y] == 1) {
RipeTomatoX.push_back(x);
RipeTomatoY.push_back(y);
}
}
}
if (RipeTomatoes(RipeTomatoX, RipeTomatoY)) {
cout << Day;
}
else {
cout << "-1";
}
return 0;
}