# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
822758 | Minindu206 | Memory (IOI10_memory) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void init()
{
#ifndef ONLINE_JUDGE
freopen("input.in", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
int n, m, k;
void bfs(vector<string> &arr)
{
queue<pair<int, int>> q;
q.push({0, 0});
vector<pair<int, int>> dir{{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
while (!q.empty())
{
int x = q.front().first;
int y = q.front().second;
q.pop();
arr[x][y] = 'O';
for (pair<int, int> p : dir)
{
int cx = x + p.first;
int cy = y + p.second;
if (cx < 0 || cy < 0 || cx >= n || cy >= m)
continue;
if(arr[cx][cy] != '.')
continue;
q.push({cx, cy});
}
}
}
int main()
{
init();
cin >> n >> m >> k;
string a(m, '.');
string b(m, 'X');
vector<string> arr(n);
for (int i = 0; i < n; i++)
{
cin >> arr[i];
}
bfs(arr);
for (int i = 0; i < n; i++)
cout << arr[i] << "\n";
}