λ°μν
https://www.acmicpc.net/problem/1085
λ¬Έμ
νμλ μ§κΈ (x, y)μ μλ€. μ§μ¬κ°νμ κ° λ³μ΄ μ’νμΆμ νννκ³ , μΌμͺ½ μλ κΌμ§μ μ (0, 0), μ€λ₯Έμͺ½ μ κΌμ§μ μ (w, h)μ μλ€. μ§μ¬κ°νμ κ²½κ³μ κΉμ§ κ°λ 거리μ μ΅μκ°μ ꡬνλ νλ‘κ·Έλ¨μ μμ±νμμ€.
μ λ ₯
첫째 μ€μ x, y, w, hκ° μ£Όμ΄μ§λ€.
μΆλ ₯
첫째 μ€μ λ¬Έμ μ μ λ΅μ μΆλ ₯νλ€.
// https://whkakrkr.tistory.com
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int x, y, w, h;
cin >> x >> y >> w >> h;
cout << min({x, y, w-x, h-y});
}
λ°μν
'π Cpp > [Solved.ac] Class2~4' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[BOJ][C++] λ°±μ€ 11403λ²: κ²½λ‘ μ°ΎκΈ° (0) | 2023.04.10 |
---|---|
[BOJ][C++] λ°±μ€ 15829λ²: Hashing (0) | 2023.04.06 |
[BOJ][C++] λ°±μ€ 1389λ²: μΌλΉ λ² μ΄μ»¨μ 6λ¨κ³ λ²μΉ (0) | 2023.04.03 |
[BOJ][C++] λ°±μ€ 9375λ²: ν¨μ μ μ ν΄λΉ (0) | 2023.03.31 |
[BOJ][C++] λ°±μ€ 18870λ²: μ’ν μμΆ (0) | 2023.03.30 |