pair-sum-invariant
Partition a universe into forced complementary pairs (or up/down segment pairs) so that any legal configuration has a fixed total. Key move: re-pair the items so the constraint becomes a closure/balance argument, reducing optimization or computation to invariant arithmetic.
풀이 전략
- Replace the 1-10 / 11-20 sets with 1-12 / 13-24 (shift by 12) — pair-sum changes but the closure argument is identical
- Build a new rectilinear-polygon closure problem where one vertical side X is unknown and the up-segs = down-segs equation pins it
- Pair-with-target-sum partition: choose k items from {1..2n} such that no two sum to 2n+1; total is forced
세부 유형 분포 (4)
한 줄을 클릭하면 그 안의 문제를 볼 수 있어요.
- rectilinear-perimeter-closure 23% (3)
A closed rectilinear path partitions its boundary segments into two opposing directions (up vs down, or left vs right); the total length in each direction must be equal. Set up the equation (sum of one direction) = (sum of the other) to recover one missing segment length.
- universe-total-minus-known 23% (3)
The entire universe has a computable fixed total that can be derived from structure alone (e.g., all dice faces, all game wins, all array entries). The universe partitions into a known portion and one unknown piece; subtract the known sum from the fixed total to find the missing value.
- uniform-pair-sum-recovery 31% (4)
Each object pairs with exactly one partner so that every (object, partner) pair sums to the same constant S. Use this uniform pair-sum to recover unknown values, derive aggregate totals, or verify uniqueness — the structural key is that S is fixed regardless of which specific pairs form.
- forbidden-complement-selection 23% (3)
A universe partitions into (k, k+d) forbidden pairs; a valid selection must choose at most one element from each pair. When selection size equals exactly half the universe, the selected and unselected halves are forced complements, pinning the total sum or proving a bipartite structure that allows counting or strategy derivation.
더 보기 (연도 추세, 도구 fingerprint, 학년 분포, 전체 문제)
도구 fingerprint (1–17)
학년 분포
- Gr 3 2
- Gr 4 2
- Gr 5 1
- Gr 6 7
- Gr 7 1