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:58Victor MerckléVictor MerckléScore: 2,595Success
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 16:011,95010,248,672780,00002,113,536
2Aug 17, 2026 16:012,1279,537,577851,00002,113,536
3Aug 17, 2026 16:012,2529,622,007901,00002,113,536
4Aug 17, 2026 16:012,3808,831,705952,00002,113,536
5Aug 17, 2026 16:012,5959,782,8491,038,00002,113,536
6Aug 17, 2026 16:012,6079,857,3931,043,00002,113,536
7Aug 17, 2026 16:012,6109,000,1581,044,00002,113,536
8Aug 17, 2026 16:012,6108,898,3461,044,00002,113,536
9Aug 17, 2026 16:012,6708,947,4501,068,00002,113,536