树套树为什么会内存超限
查看原帖
树套树为什么会内存超限
522539
Richard1211楼主2022/7/15 11:07

这题直接套树套树的模板为什么会内存超限呢?

const int N=50050;
const int K=200200;
const int M=6000000;
const int INF=2147483647;
int a[K];
int n,m;
int val[M],sz[M],heap[M],l[M],r[M];
int tot;

我寻思着这内存也没有超啊

2022/7/15 11:07
加载中...