[BOJ]14502번: 연구소 (c++)
https://www.acmicpc.net/problem/14502 14502번: 연구소 인체에 치명적인 바이러스를 연구하던 연구소에서 바이러스가 유출되었다. 다행히 바이러스는 아직 퍼지지 않았고, 바이러스의 확산을 막기 위해서 연구소에 벽을 세우려고 한다. 연구소는 크� www.acmicpc.net #include #include #include #include using namespace std; template using double_v = vector; struct pos { int x, y; }; int N, M; const int NEW_WALL = 3; enum {LAND, WALL, VIRUS}; int dr_x[] = { 0, 1, 0, -1 }; int dr_y[] = { 1, 0, -..
2020. 6. 13.