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 listMay 11, 2026 13:07Victor MerckléVictor MerckléError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 11, 2026 13:10010,860,84902,114,0002,187,264expected "58", got "50 "
2May 11, 2026 13:104,78010,896,45201,912,0002,187,264
3May 11, 2026 13:105,10010,938,62702,040,0002,158,592
4May 11, 2026 13:105,32711,257,15302,131,0002,158,592
5May 11, 2026 13:105,49011,435,20502,196,0002,187,264
6May 11, 2026 13:105,51511,028,01402,206,0002,158,592
7May 11, 2026 13:105,52211,483,24502,209,0002,187,264
8May 11, 2026 13:105,64211,626,28302,257,0002,158,592
9May 11, 2026 13:106,02011,806,66102,408,0002,187,264