C++ 코드 공유합니다.
#include <algorithm>
#include <cstdio>
#include <cstdint>
#include <iostream>
#include <string>
#include <vector>
#define NUM_DIRS 4
#define DIR_OFFSET_X 0
#define DIR_OFFSET_Y 1
using namespace std;
static int map_size;
static vector<vector<int>> map;
static int DIRS[NUM_DIRS][2] = { {-1, 0}, {0, -1}, {1, 0}, {0, 1} }; // Left, Top, Right, Bottom
int seek_region(int x, int y, int region_size = 0)
{
map[y][x] = 0;
for(int i = 0; i < NUM_DIRS; ++i...
- 연습문제 톡
- 날짜
- 2024-07-11 10:54:40
- 작성자
- coconut
- 댓글
- 0