OJ 2636 : 치즈 - C++
치즈
코드
#include <cstdio>
#include <vector>
#include <queue>
#include <iostream>
#include <cmath>
using namespace std;
int board[101][101];
int vis[101][101];
int N,M;
int day, save;
int dx[4] = {0, 1, 0, -1};
int dy[4] = {1, 0, -1, 0};
queue<pair<int,int>> air;
queue<pair<int,int>> che;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> N >> M;
for(int i=0;i<N;i++)
for(int j=0;j<M;j++)
{
cin >> board[i][j];
if(board[i][j] == 1)
che.push({i,j});
}
if(che.empty()) goto finish;
air.push({0,0});
vis[0][0] = true;
save = che.size();
while(true)
{
queue<pair<int,int>> nextQ;
// BFS 돌면서 다음에 이번에 공기와 접촉해서 갈 수있는 치즈를 녹이고
// 1좌표는 다음에 돌아야 하니까 다음 큐에 저장
while(!air.empty())
{
auto cur = air.front(); air.pop();
for(int dir=0;dir<4;dir++)
{
int ny = cur.first + dy[dir];
int nx = cur.second + dx[dir];
if(nx<0 or ny<0 or nx>=M or ny>=N) continue;
if(vis[ny][nx]) continue;
if(board[ny][nx] == 1){
nextQ.push({ny,nx});
board[ny][nx] = 0;
}
else
air.push({ny,nx});
vis[ny][nx] = true;
}
}
air = nextQ;
day++;
/* 남은 치즈 개수 구하기 */
int cnt=0;
for(int i=0;i<N;i++)
for(int j=0;j<M;j++)
if(board[i][j] == 1) cnt++;
if(cnt != 0) save = cnt;
else break;
}
finish:;
cout << day << '\n' << save << '\n';
}
- key point
이번에 0좌표를 따라 도달할 수 있는 1의 좌표
= 이번에 녹을 치즈
& 다음에 돌아야 할 air
Author And Source
이 문제에 관하여(OJ 2636 : 치즈 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@neity16/BOJ-2636-치즈-C
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#include <cstdio> #include <vector> #include <queue> #include <iostream> #include <cmath> using namespace std; int board[101][101]; int vis[101][101]; int N,M; int day, save; int dx[4] = {0, 1, 0, -1}; int dy[4] = {1, 0, -1, 0}; queue<pair<int,int>> air; queue<pair<int,int>> che; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N >> M; for(int i=0;i<N;i++) for(int j=0;j<M;j++) { cin >> board[i][j]; if(board[i][j] == 1) che.push({i,j}); } if(che.empty()) goto finish; air.push({0,0}); vis[0][0] = true; save = che.size(); while(true) { queue<pair<int,int>> nextQ; // BFS 돌면서 다음에 이번에 공기와 접촉해서 갈 수있는 치즈를 녹이고 // 1좌표는 다음에 돌아야 하니까 다음 큐에 저장 while(!air.empty()) { auto cur = air.front(); air.pop(); for(int dir=0;dir<4;dir++) { int ny = cur.first + dy[dir]; int nx = cur.second + dx[dir]; if(nx<0 or ny<0 or nx>=M or ny>=N) continue; if(vis[ny][nx]) continue; if(board[ny][nx] == 1){ nextQ.push({ny,nx}); board[ny][nx] = 0; } else air.push({ny,nx}); vis[ny][nx] = true; } } air = nextQ; day++; /* 남은 치즈 개수 구하기 */ int cnt=0; for(int i=0;i<N;i++) for(int j=0;j<M;j++) if(board[i][j] == 1) cnt++; if(cnt != 0) save = cnt; else break; } finish:; cout << day << '\n' << save << '\n'; }
- key point
이번에 0좌표를 따라 도달할 수 있는 1의 좌표
=이번에 녹을 치즈
&다음에 돌아야 할 air
Author And Source
이 문제에 관하여(OJ 2636 : 치즈 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@neity16/BOJ-2636-치즈-C저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)