PillarsDivTwo
SRM 547 · 2011-11-22 · by sdya
Problem Statement
You are given the
Notes
- Your return value must have a relative or an absolute error of less than 1e-9.
Constraints
- heights will contain between 1 and 50 elements, inclusive.
- Each element of heights will be between 1 and 100, inclusive.
- w will be between 1 and 100, inclusive.
Statement by TopCoder, Inc. — view the original on the archive.
{3,3,3}
2
Returns: 5.656854249492381
{1,1,1,1}
100
Returns: 300.0
{100,2,100,2,100}
4
Returns: 396.32310051270036
We will need the most rope if columns 0, 2, and 4 have height 100 each, and columns 1 and 3 have height 1 each.
{2,1,1,2}
1
Returns: 3.82842712474619
{5,6,7,8,9,10,11,12,13,14,15}
20
Returns: 221.02070848731498
Submissions are judged against all 123 archived test cases, of which 5 are shown here. Case numbers match the judge’s.
Language: C++17 · define a public class PillarsDivTwo with a public method double maximalLength(vector<int> height, int w) · 123 test cases · 2 s / 256 MB per case