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 14:32Victor 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 14:3409,034,5051,803,00002,187,264expected "51", got "50 "
2May 11, 2026 14:343,7608,805,6511,504,00002,187,264
3May 11, 2026 14:344,4079,978,8181,763,00002,187,264
4May 11, 2026 14:344,58011,433,3901,832,00002,158,592
5May 11, 2026 14:344,5958,899,9571,838,00002,158,592
6May 11, 2026 14:344,77210,870,0511,909,00002,187,264
7May 11, 2026 14:344,97512,175,36401,990,0002,158,592
8May 11, 2026 14:345,01011,472,37002,004,0002,158,592
9May 11, 2026 14:345,37210,319,47502,149,0002,187,264