昨日之日 @ 2019-10-16 20:22:31
RT
for(register int i=1;i<=logg;i++){
for(register int j=1;j<=n-(1<<i)+1;j++){
st[j][i]=min(st[j][i-1],st[j+(1<<(i-1))][i-1]);
}
}
by Gogococoyoyo @ 2019-10-16 20:23:20
不用ST表
by Lance1ot @ 2019-10-16 20:34:49
楼上正解
by 冥诺在线发呆 @ 2019-10-16 21:00:03
这道题ST表过不了的