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:49Victor MerckléVictor MerckléScore: 2,497Success
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:501,8728,194,918749,00002,113,536
2Jun 16, 2026 16:501,9458,185,059778,00002,113,536
3Jun 16, 2026 16:502,2728,368,143909,00002,113,536
4Jun 16, 2026 16:502,3158,381,433926,00002,113,536
5Jun 16, 2026 16:502,4978,445,321999,00002,113,536
6Jun 16, 2026 16:502,7108,493,6311,084,00002,113,536
7Jun 16, 2026 16:504,6329,184,4271,853,00002,113,536
8Jun 16, 2026 16:504,8359,472,1871,934,00002,113,536
9Jun 16, 2026 16:504,9729,433,6681,989,00002,113,536