这里很明显,您不需要将值存储在矩阵中,因为不可能有那么多空间 (Array[10000][10000]) 可供分配。所以你需要以mathematical 的方式思考。
考虑一个4x4 矩阵并用i,j 表示每个元素。
1,1 1,2 1,3 1,4
2,1 2,2 2,3 2,4
3,1 3,2 3,3 3,4
4,1 4,2 4,3 4,4
现在我们可以在这里表示每个元素中存储的内容。
1/1 1/2 1/3 1/4 (In Integers) 1 0 0 0
2/1 2/2 2/3 2/4 ============> 2 1 0 0
3/1 3/2 3/3 3/4 3 1 1 0
4/1 4/2 4/3 4/4 4 2 1 1
通过将其分成列来处理此矩阵并求解每个columns。
对于第一列系列将是1+2+3+4。那么对于列号two(2),系列将是0+1+1+2。
请注意,对于 ith 列,first i-1 的值为零,然后列中的 i values 相同。然后value 增加。同样,i 值也是一样的。再次增加1 等等。
所以在ith 列值中获取increased 上的jth 元素,其中j%i==0。
因此,您可以在 1-D 数组中实现此逻辑,并且此方法的复杂度将为每个测试用例的 O(n logn)。
代码:
import java.util.Scanner;
public class Main
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int testcases=sc.nextInt();
while(testcases-- >0)
{
int n=sc.nextInt();
long array[]=new long[n+1]; //Take long array to avoid overflow
for(int i=1;i<=n;i++)
{
for(int j=i;j<=n;j+=i)
{
array[j]++; //This will store that which elements get increased
//from zero how many times
}
}
//Now we can do summation of all elements of array but we need to do prefix sum here
long sum=0;
for(int i=1;i<=n;i++)
{
array[i]+=array[i-1];
sum+=array[i];
}
System.out.println(sum);
}
}
}