# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
948515 | vjudge1 | 무지개나라 (APIO17_rainbow) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rainbow.h"
#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
#define ios ios::sync_with_stdio(false); cin.tie(NULL);
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define fr first
#define sc second
int n,m,t,q;
int used[1005][1005];
vector< vector< int> > a;
void dfs(int x, int y, int x1, int x2, int y1, int y2){
if(used[x][y]) return;
if(x<x1 || x>x2 || y<y1 || y>y2 || a[x][y]) return;
used[x][y]=1;
dfs(x-1,y,x1,x2,y1,y2);
dfs(x+1,y,x1,x2,y1,y2);
dfs(x,y-1,x1,x2,y1,y2);
dfs(x,y+1,x1,x2,y1,y2);
}
void init(int R, int C, int sr, int sc, int M, char *S) {
n=R,m=C;
int x=sr,y=sc;
t=M;
a.resize(n+1,vector<int>(m+1));
a[x][y]=1;
for(int i=0;i<t;i++){
char c=S[i];
if(c=='N') x--;
else if(c=='S') x++;
else if(c=='E') y++;
else y--;
a[x][y]=1;
}
}
int colour(int ar, int ac, int br, int bc) {
if(n==2){
}
else{
int x1=ar,x2=br,y1=ac,y2=bc;
for(int i=x1;i<=x2;i++)
for(int j=y1;j<=y2;j++) used[i][j]=0;
int ans=0;
for(int i=x1;i<=x2;i++){
for(int j=y1;j<=y2;j++){
if(!used[i][j] && !a[i][j]){
ans++;
dfs(i,j,x1,x2,y1,y2);
}
}
}
return ans;
}
}