문제 링크 : https://www.acmicpc.net/problem/1085 1085번: 직사각형에서 탈출 첫째 줄에 x y w h가 주어진다. w와 h는 1,000보다 작거나 같은 자연수이고, x는 1보다 크거나 같고, w-1보다 작거나 같은 자연수이고, y는 1보다 크거나 같고, h-1보다 작거나 같은 자연수이다. www.acmicpc.net #include #include #define n_ 1005 using namespace std; int n, m; int arr[n_]; char str[n_]; int main(void) { int x, y, w, h; cin >> x >> y >> w >> h; int res = min(x, y); res = min(res, min(w - x, h - ..