atcoder#ABC174E. [ABC174E] Logs
[ABC174E] Logs
Score : points
Problem Statement
We have logs of lengths .
We can cut these logs at most times in total. When a log of length is cut at a point whose distance from an end of the log is tL-t$.
Find the shortest possible length of the longest log after at most cuts, and print it after rounding up to an integer.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print an integer representing the answer.
2 3
7 9
4
- First, we will cut the log of length at a point whose distance from an end of the log is , resulting in two logs of length each.
- Next, we will cut the log of length at a point whose distance from an end of the log is , resulting in two logs of length and .
- Lastly, we will cut the log of length at a point whose distance from an end of the log is , resulting in two logs of length and .
In this case, the longest length of a log will be , which is the shortest possible result. After rounding up to an integer, the output should be .
3 0
3 4 5
5
10 10
158260522 877914575 602436426 24979445 861648772 623690081 433933447 476190629 262703497 211047202
292638192