簡單著色

等級 5 · 橙色腰帶

策略:

著色

需要:

X翼

概要

簡單著色 (單數鏈) 使用兩種顏色來追蹤單一數字的共扼對。透過沿鏈條交替顏色,可以發現矛盾或消除數字。

工作原理

  1. 在一個單位中找出共軛對(恰好出現兩次)的數字。
  2. 為一個單元格上色,並為其共軛對上相反顏色。
  3. 沿著所有相連的共軛對繼續上色。
  4. 法則1(顏色包圍):同一單位中出現兩次相同顏色——該顏色為假。
  5. 法則2(顏色陷阱):未上色的單元格看到兩種顏色——消除該候選數。

範例

尋找簡單著色。

1

簡單著色

Build a coloring chain for digit 3 by following conjugate pairs.

2

簡單著色

Each link alternates color: exactly one color is TRUE, the other is FALSE.

3

簡單著色

Find uncolored cells that can see cells of BOTH colors.

4

簡單著色

One color must be TRUE, so every highlighted cell already sees a true 3 somewhere in the chain.

5

簡單著色

Remove 3 from the cells that see both colors: r3c8.

6

應用該技術後的結果。

技巧與模式

  • 從任何共軛對開始,系統性地交替顏色。其中一種顏色的所有細胞為真,或另一種顏色的所有細胞為真。顏色陷阱是最常見的消除類型。