# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
725493 | TheSahib | Zoo (COCI19_zoo) | C++17 | 98 ms | 5828 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#define ll long long
#define pii pair<int, int>
using namespace std;
const int MAX = 1005;
pii dirs[4] = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
int n, m;
int grid[MAX][MAX];
bool visited[MAX][MAX];
vector<pii> lastNodes, nodes;
void dfs(pii cord){
visited[cord.first][cord.second] = 1;
for(pii d:dirs){
pii cord1 = {cord.first + d.first, cord.second + d.second};
if(cord1.first >= 0 && cord1.first < n && cord1.second >= 0 && cord1.second < m && !visited[cord1.first][cord1.second]){
if(grid[cord1.first][cord1.second] == grid[cord.first][cord.second]){
dfs(cord1);
}
else if(grid[cord1.first][cord1.second] == 3 - grid[cord.first][cord.second]){
nodes.push_back(cord1);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |