728x90 반응형 15686 치킨배달1 15686 치킨배달 https://www.acmicpc.net/problem/15686 15686번: 치킨 배달 크기가 N×N인 도시가 있다. 도시는 1×1크기의 칸으로 나누어져 있다. 도시의 각 칸은 빈 칸, 치킨집, 집 중 하나이다. 도시의 칸은 (r, c)와 같은 형태로 나타내고, r행 c열 또는 위에서부터 r번째 칸 www.acmicpc.net #include #include #include #include using namespace std; #define MAP_SIZE 51 int N, M;// 맵크기, 치킨집 최대 개수 int map[MAP_SIZE][MAP_SIZE]; int finalMin = 0x7fffffff;//치킨거리 최종 최소값 struct Data{ int y, x; }; vectorhome;/.. 2020. 7. 27. 이전 1 다음 728x90 반응형