Sum of Every Minimum — Solution & Editorial
Each ai is the minimum of (distance to previous strictly-smaller) × (distance to next smaller-or-equal) subarrays. Monotonic stacks compute both boundaries; sum ai·left·right. The strict/non-strict asymmetry avoids double-counting equal values.
Complexity: O(N)
Watch out: Equal elements: one side must use strict and the other non-strict comparison, or subarrays are counted twice or zero times.