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:54Victor MerckléVictor MerckléScore: 2,882Success
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:552,1328,263,392853,00002,113,536
2Jun 16, 2026 16:552,4878,396,145995,00002,113,536
3Jun 16, 2026 16:552,5578,501,7851,023,00002,113,536
4Jun 16, 2026 16:552,7128,481,8281,085,00002,113,536
5Jun 16, 2026 16:552,8829,944,1041,153,00002,113,536
6Jun 16, 2026 16:552,9458,564,5471,178,00002,113,536
7Jun 16, 2026 16:553,8328,937,8791,533,00002,113,536
8Jun 16, 2026 16:554,5359,255,8451,814,00002,113,536
9Jun 16, 2026 16:554,9179,417,4251,967,00002,113,536