Average Permutation
You are given an integer $N$. Find a permutation $P = [P_1, P_2, \ldots, P_N]$ of the integers $\{1, 2, \ldots, N\}$ such that sum of averages of all consecutive triplets is minimized, i.e. $$ \sum_{i=1}^{N-2} \frac{P_i + P_{i+1} + P_{i+2}}{3} $$ is minimized. If multiple permutations are possible, print any of them. ### Input - The first line of input will contain a single integer $T$, deno
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start