맛있는감귤

BOJ : 1085 직사각형에서 탈출 본문

알고리즘/백준 알고리즘

BOJ : 1085 직사각형에서 탈출

맛있는감귤 2017. 1. 12. 17:53

문제 : https://www.acmicpc.net/problem/1085


github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/1085.cpp


#include <cstdio>
#include <algorithm>
using namespace std;

int main(){
    int x,y,w,h;
    scanf("%d %d %d %d",&x, &y, &w, &h);
    int m=1001;
    m = min(min(x-0, w-x), min(y-0, h-y));
    printf("%d",m);
    return 0;
}

'알고리즘 > 백준 알고리즘' 카테고리의 다른 글

BOJ : 1149 RGB거리  (0) 2017.01.12
BOJ : 1094 막대기  (0) 2017.01.12
BOJ : 1026 보물  (0) 2017.01.12
BOJ : 1009 분산처리  (0) 2017.01.12
BOJ : 1012 유기농 배추  (0) 2017.01.12