BOJ 1712 손익분기점

Link

손익분기점 공식을 코드로 작성합니다.

$a / (c-b) < (손익분기점)$

$a / (c-b)$ 는 안타깝게도 나누어 떨어지지 않는 경우가 있을 수 있습니다.
상관없어요. 어차피 하나 더 팔아야되는거 똑같으니까 +1 해줍니다.

손익분기점이 없는 경우는 $b >= c$ 인 경우가 되겠습니다.

코드 (C++)

#include <iostream>

using namespace std;

int main(int argc, const char *argv[]) {
cin.tie(nullptr);
ios::sync_with_stdio(false);

int A, B, C;
cin >> A >> B >> C;

if (B >= C) {
cout << -1 << endl;
} else {
cout << A / (C - B) + 1 << endl;
}

return 0;
}
Total views

댓글

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×