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:33Victor MerckléVictor MerckléScore: 6,190Success
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:342,1327,979,285853,00002,113,536
2Jun 16, 2026 16:342,5778,129,2881,031,00002,113,536
3Jun 16, 2026 16:343,2528,394,8561,301,00002,113,536
4Jun 16, 2026 16:343,7578,687,3921,503,00002,113,536
5Jun 16, 2026 16:346,1909,453,8482,476,00002,113,536
6Jun 16, 2026 16:349,14710,806,0553,659,00002,113,536
7Jun 16, 2026 16:3413,43512,529,4785,374,00002,113,536
8Jun 16, 2026 16:3413,56712,685,2845,427,00002,113,536
9Jun 16, 2026 16:3418,52014,623,0617,408,00002,113,536