Largest Square Submatrix of all 1's NoSIMD_C#

Find the largest square submatrix consisting entirely of 1s as fast as possible.

Input

A 10,000 x 10,000 matrix of uint8 values (0 or 1) on STDIN.

0, 1, 0, 1, 1
0, 1, 1, 1, 1
0, 0, 1, 0, 0
1, 0, 1, 1, 0

Output

Print the side length of the largest all-ones square submatrix to STDOUT. The answer is guaranteed to be greater than 1.

For the example above, the output is:

2
Back to listJun 16, 2026 16:00Victor MerckléVictor MerckléScore: 4,110Success
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jun 16, 2026 16:012,1478,072,728859,00002,113,536
2Jun 16, 2026 16:012,2508,336,592900,00002,113,536
3Jun 16, 2026 16:012,7878,503,2161,115,00002,113,536
4Jun 16, 2026 16:012,9478,586,3431,179,00002,113,536
5Jun 16, 2026 16:014,1108,996,7001,644,00002,113,536
6Jun 16, 2026 16:014,2609,281,4791,704,00002,113,536
7Jun 16, 2026 16:014,2709,077,0521,708,00002,113,536
8Jun 16, 2026 16:014,3809,257,0451,752,00002,113,536
9Jun 16, 2026 16:014,5679,276,8811,827,00002,113,536