BOJ 1085 직사각형에서 탈출 cpp
백준 1085 직사각형에서 탈출 c++
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int west, east, north, south;
int x, y, w, h;
cin >> x >> y >> w >> h;
west = x;
east = w - x;
north = h - y;
south = y;
int arr[4] = {west, east, north, south};
sort(arr, arr+4);
cout << arr[0];
}
'Algorithm' 카테고리의 다른 글
BOJ 1018 체스판 다시 칠하기 c++ (0) | 2020.11.09 |
---|---|
BOJ 1259 팰린드롬수 c++ (0) | 2020.11.09 |
boj 17478 재귀함수가 뭔가요? c++ (0) | 2020.10.16 |
boj 1012 c++ 유기농 배추 (0) | 2020.09.07 |
boj 4889 c++ 안정적인 문자열 (0) | 2020.09.04 |
최근댓글