이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "rainbow.h"
using namespace std;
vector<vector<bool>> ex;
int r, c;
void init(int R, int C, int sr, int sc, int M, char *S) {
r = R; c = C;
ex.assign(r + 1, vector<bool>(c + 1));
ex[sr][sc] = true;
for (int i = 0; i < M; i++) {
if (S[i] == 'N') sr--;
else if (S[i] == 'S') sr++;
else if (S[i] == 'W') sc--;
else sc++;
ex[sr][sc] = true;
}
}
int colour(int ar, int ac, int br, int bc) {
auto vis = ex;
int ans = 0;
// cout << '\t' << ar << ' ' << ac << ' ' << br << ' ' << bc << endl;
for (int x = ar; x <= br; x++) {
for (int y = ac; y <= bc; y++) {
if (vis[x][y]) continue;
queue<pair<int, int>> q;
q.push({x, y});
vis[x][y] = true;
ans++;
vector<pair<int, int>> a = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
while (!q.empty()) {
auto [qx, qy] = q.front();
// cout << '\t' << qx << ' ' << qy << endl;
q.pop();
for (auto [dx, dy]: a) {
qx += dx; qy += dy;
if (qx > 0 and qx <= r and qy > 0 and qy <= c and !vis[qx][qy]) {
vis[qx][qy] = true;
q.push({qx, qy});
}
}
}
}
}
return ans;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |