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 listApr 17, 2026 22:30Charles CabergsCharles CabergsScore: 899,703Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 17, 2026 22:30899,303385,952,404348,730,00010,991,0002,519,040
2Apr 17, 2026 22:30899,648384,306,538355,861,0003,998,0002,281,472
3Apr 17, 2026 22:30899,665388,037,292355,868,0003,998,0002,289,664
4Apr 17, 2026 22:30899,683386,972,810347,878,00011,995,0002,289,664
5Apr 17, 2026 22:30899,703382,464,470347,885,00011,996,0002,510,848
6Apr 17, 2026 22:30899,868383,136,699350,949,0008,998,0002,281,472
7Apr 17, 2026 22:30899,945387,639,005338,980,00020,998,0002,289,664
8Apr 17, 2026 22:30900,163386,678,692336,061,00024,004,0002,506,752
9Apr 17, 2026 22:30900,423386,812,605353,166,0007,003,0002,289,664