Combinatorics Problem from Malaysia TST 2022

ζŠ•η¨Ώζ—₯:2023/1/3ζœ€η΅‚ζ›΄ζ–°ζ—₯:2025/5/17

I hate combinatorics 😑

Berikut ini ada sebuah soal kombinatorika yang diberikan saat tahapan IMO Team Selection Test di Malaysia. Authornya adalah teman saya yang bernama Ivan Chan (Malaysia), anaknya imba sekali. Soalnya adalah sebagai berikut.

Problem Statement

Let SS be a set of 20232023 points in a plane, and it is known that the distances of any two different points in SS are all distinct. Ivan colors the points with kk colors such that for every point P∈SP \in S, the closest and the furthest point from PP in SS also have the same color as PP.

What is the maximum possible value of kk?

Solution

Consider a directed graph GG, each vertex represents a point of SS and we connect two vertices a→ba \to b if bb is the closest point from aa. Graph GG consists of several connected components, in which each component consists of at least two vertices, and every point in a component must be coloured with the same colour. Also, a connected component is a union of a cycle and disjoint paths. Note that no cycle with a length greater than two may occur, since if p→q→rp \to q \to r is a path, then
d(q,r)<d(p,q)d(q,r) < d(p,q)
since rr is the closest point from qq.

If a point VV with colour CC has its furthest point in a different connected component, there are at least four points with colour CC. Otherwise, if its furthest point is in the same connected component, then it's possible that there can only be three points with colour CC. Let's say the colour that only has three points as nice colour. We claim that there is only at most one nice colour.

For a nice colour, its points must be in the same connected component. Let's say the points and the edges aβ†’b↔ca \to b \leftrightarrow c (So bb is the closest point from aa, cc is the closest point from bb, and bb is the closest point from cc). We must have cc as the furthest point from aa, and aa as the furthest point from both bb and cc. Let say we have another nice colour with connected component a1β†’b1↔c1a_1 \to b_1 \leftrightarrow c_1. Then since aa is the furthest from bb and b1b_1 is the closest from a1a_1, we have:
d(a,b)>d(a1,b)>d(a1,b1),d(a,b) > d(a_1,b) > d(a_1,b_1),
and similarly by symmetry we should have d(a1,b1)>d(a,b)d(a_1,b_1) > d(a,b). A contradiction.

Therefore, there are at most one nice colour. If kk denotes the number of the colours, we have:
2023β‰₯4(kβˆ’1)+3β€…β€ŠβŸΉβ€…β€Š506β‰₯k.2023 \geq 4(k-1) + 3 \implies 506 \geq k.

Komentar Ketika pertama kali membaca dan mengerjakan soal ini, saya salah baca dan mengira bahwa hanya titik terjauh dan terdekat dari PP saja yang harus bewarna sama, tetapi PP nya sendiri boleh memiliki warna yang berbeda dengan kedua titik tersebut. Untuk kasus tersebut, sepertinya cukup sulit, dan apabila saya memiliki waktu untuk mengerjakannya kembali, saya akan menuliskan solusi saya untuk variasi tersebut.