benchmarks.wiki / Public workspace
Humanity's Last Code Exam / 2023_I / Waterworld
Problem
Answer published by the source. Consult the official source to check your work against its answer.
question title
Waterworld
question content
Thousands of planets outside the Solar System have been discovered in recent years. An important factor for potential life support is the availability of liquid water. Detecting water on faraway planets is not easy. For rotating planets, a brand-new technology using relativistic quantum-polarized spectroscopy can help. It works as follows (this is a simplified description as only three people on this planet understand how it really works).
Assume the telescope shows the planet such that its rotating axis is vertical and its equator is horizontal. Only the vertical line at the center of the image (the line that covers the rotating axis) is analyzed, because it provides the highest resolution of the planet’s surface.
The analysis proceeds in steps of degrees. In one step, data is aggregated while the planet rotates by degrees, so each step gives information about a slice of degrees of the planet’s surface. The image is split into segments of equal height, which are analyzed separately. So the slice of degrees is partitioned into areas . For each area , image analysis produces a number that gives the percentage of covered by water. The areas for one step are highlighted in the diagram on the right.
You may assume the planet’s surface is a sphere. This means each area is a spherical quadrilateral: it has four vertices, two sides parallel to the equator (that is, in planes parallel to the equator’s plane) and two sides on great circles through the planet’s poles, where the great circles are degrees apart. At either pole, two of the four vertices collapse into the pole, so and are spherical triangles with only one side parallel to the equator. Due to the curvature of the surface, sides that are parallel to the equator are longer if they are closer to the equator, while sides on great circles are longer if they are closer to the poles.
The above process is repeated for the next degrees of rotation, and so on, a total number of times, until the whole surface of the planet has been covered (that is, degrees). Your task is to compute the percentage of the planet’s surface covered by water from the given data.
## Input
The first line of input contains the two integers and . Each of the following lines contains integers for and . Each column of this matrix describes the measurements for a single step, that is, a rotation by degrees. The number is the percentage of area that is covered by water in the -th step.
## Output
Output the percentage of the planet’s surface covered by water. Your answer should have an absolute error of at most .
## Sample Input 1
Plain-text mathematical notation (without MathML)
Thousands of planets outside the Solar System have been discovered in recent years. An important factor for potential life support is the availability of liquid water. Detecting water on faraway planets is not easy. For rotating planets, a brand-new technology using relativistic quantum-polarized spectroscopy can help. It works as follows (this is a simplified description as only three people on this planet understand how it really works). Assume the telescope shows the planet such that its rotating axis is vertical and its equator is horizontal. Only the vertical line at the center of the image (the line that covers the rotating axis) is analyzed, because it provides the highest resolution of the planet’s surface. The analysis proceeds in steps of d degrees. In one step, data is aggregated while the planet rotates by d degrees, so each step gives information about a slice of d degrees of the planet’s surface. The image is split into n segments of equal height, which are analyzed separately. So the slice of d degrees is partitioned into n areas A₁,…,A_(n). For each area A_(i), image analysis produces a number that gives the percentage of A_(i) covered by water. The areas A_(i) for one step are highlighted in the diagram on the right. You may assume the planet’s surface is a sphere. This means each area A₂,…,A_(n−1) is a spherical quadrilateral: it has four vertices, two sides parallel to the equator (that is, in planes parallel to the equator’s plane) and two sides on great circles through the planet’s poles, where the great circles are d degrees apart. At either pole, two of the four vertices collapse into the pole, so A₁ and A_(n) are spherical triangles with only one side parallel to the equator. Due to the curvature of the surface, sides that are parallel to the equator are longer if they are closer to the equator, while sides on great circles are longer if they are closer to the poles. The above process is repeated for the next d degrees of rotation, and so on, a total number of m times, until the whole surface of the planet has been covered (that is, md=360 degrees). Your task is to compute the percentage of the planet’s surface covered by water from the given data. ## Input The first line of input contains the two integers n and m (2≤n,m≤1000). Each of the following n lines contains m integers a_(i,j) (0≤a_(i,j)≤100 for 1≤i≤n and 1≤j≤m). Each column of this matrix describes the measurements for a single step, that is, a rotation by d degrees. The number a_(i,j) is the percentage of area A_(i) that is covered by water in the j-th step. ## Output Output the percentage of the planet’s surface covered by water. Your answer should have an absolute error of at most 10^(−6). ## Sample Input 1
Original LaTeX notation
Thousands of planets outside the Solar System have been discovered in recent years. An important factor for potential life support is the availability of liquid water. Detecting water on faraway planets is not easy. For rotating planets, a brand-new technology using relativistic quantum-polarized spectroscopy can help. It works as follows (this is a simplified description as only three people on this planet understand how it really works).
Assume the telescope shows the planet such that its rotating axis is vertical and its equator is horizontal. Only the vertical line at the center of the image (the line that covers the rotating axis) is analyzed, because it provides the highest resolution of the planet’s surface.
The analysis proceeds in steps of \(d\) degrees. In one step, data is aggregated while the planet rotates by \(d\) degrees, so each step gives information about a slice of \(d\) degrees of the planet’s surface. The image is split into \(n\) segments of equal height, which are analyzed separately. So the slice of \(d\) degrees is partitioned into \(n\) areas \(A_1, \ldots, A_n\). For each area \(A_i\), image analysis produces a number that gives the percentage of \(A_i\) covered by water. The areas \(A_i\) for one step are highlighted in the diagram on the right.
You may assume the planet’s surface is a sphere. This means each area \(A_2, \ldots, A_{n-1}\) is a spherical quadrilateral: it has four vertices, two sides parallel to the equator (that is, in planes parallel to the equator’s plane) and two sides on great circles through the planet’s poles, where the great circles are \(d\) degrees apart. At either pole, two of the four vertices collapse into the pole, so \(A_1\) and \(A_n\) are spherical triangles with only one side parallel to the equator. Due to the curvature of the surface, sides that are parallel to the equator are longer if they are closer to the equator, while sides on great circles are longer if they are closer to the poles.
The above process is repeated for the next \(d\) degrees of rotation, and so on, a total number of \(m\) times, until the whole surface of the planet has been covered (that is, \(md = 360\) degrees). Your task is to compute the percentage of the planet’s surface covered by water from the given data.
## Input
The first line of input contains the two integers \(n\) and \(m\) \((2 \leq n, m \leq 1000)\). Each of the following \(n\) lines contains \(m\) integers \(a_{i,j}\) \((0 \leq a_{i,j} \leq 100\) for \(1 \leq i \leq n\) and \(1 \leq j \leq m)\). Each column of this matrix describes the measurements for a single step, that is, a rotation by \(d\) degrees. The number \(a_{i,j}\) is the percentage of area \(A_i\) that is covered by water in the \(j\)-th step.
## Output
Output the percentage of the planet’s surface covered by water. Your answer should have an absolute error of at most \(10^{-6}\).
## Sample Input 1
Code
3 7
63 61 55 54 77 87 89
73 60 38 5 16 56 91
75 43 11 3 16 20 95
## Sample Output 1
Code
51.809523810
## Sample Input 2
Code
4 3
10 10 10
10 10 10
10 10 10
10 10 10
## Sample Output 2
Code
10.000000000
platform
atcoder
Discussion
No discussion posts on this page yet. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.
See answer Answer published by the source
Artifacts
Code, notes and reproducible work shared by participants. Files are served from a separate origin.
No artifacts on this page yet. Share reproducible code or notes in a contribution. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.
Source and history
initial import