Largest Square Submatrix of all 1's C#_user

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 listAug 17, 2026 15:00Victor MerckléVictor MerckléScore: 2,495Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 17, 2026 15:022,1459,131,814858,00002,121,728stderr
2Aug 17, 2026 15:022,2228,968,735889,00002,121,728stderr
3Aug 17, 2026 15:022,3009,577,547920,00002,121,728stderr
4Aug 17, 2026 15:022,4829,778,831993,00002,121,728stderr
5Aug 17, 2026 15:022,49511,094,301998,00002,121,728stderr
6Aug 17, 2026 15:022,5309,782,5931,012,00002,121,728stderr
7Aug 17, 2026 15:022,8329,831,9481,133,00002,121,728stderr
8Aug 17, 2026 15:022,8429,212,5571,137,00002,121,728stderr
9Aug 17, 2026 15:022,8479,774,6941,139,00002,121,728stderr