# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
252914 | Erkhemkhuu | 여행하는 상인 (APIO17_merchant) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
int x0, y0, x1, y1;
x0 = ar; y0 = ac;
x1 = br; y1 = bc;
int N = x1 - x0 + 1;
int M = y1 - y0 + 1;
int i, j;
char temp[sN][sN];
for(i = x0; i <= x1; i++)
for(j = y0; j <= y1; j++)
temp[i - x0 + 1][j - y0 + 1] = grid[i][j];
int cnt = 0;
for(i = 1; i <= N; i++) {
for(j = 1; j <= M; j++) {
if(temp[i][j] == '0') {
cnt++;
queue <int> q;
q.push(i * 1000 + j);
while(!q.empty()) {
int v = q.front();
int curx = v / 1000;
int cury = v % 1000;
q.pop();
temp[curx][cury] = 'M';
if(curx - 1 >= 1 && temp[curx - 1][cury] == '0') q.push((curx - 1) * 1000 + cury);
if(cury + 1 <= M && temp[curx][cury + 1] == '0') q.push(curx * 1000 + cury + 1);
if(curx + 1 <= N && temp[curx + 1][cury] == '0') q.push((curx + 1) * 1000 + cury);
if(cury - 1 >= 1 && temp[curx][cury - 1] == '0') q.push(curx * 1000 + cury - 1);
}
}
}
}
return cnt;