Here is spoj problem (krect) that states
Given a M*N square board. Each square contains a letter of the English alphabet ('A' .. 'Z').
A K-rectangle of the board is a rectangle whose sides are parallel to the sides of the board, and contains exactly K different types of letter
For example, with this 4*3 board:
CED
CEB
CBC
DDAThe rectangle [(1,1), (2,2)] is a 2-rectangle of the board because it contains 2 different letters: C and E.
Given M, N, K and the M*N board. Determine how many K-rectangles there are in the board.
Can you propose any solution? All ideas are wellcome