P4749 [CERC2017] Kitchen Knobs
如果在定义数组时这么写
int n,a[N],maxn=0,cnt[10],ans=0,c[4],p[N][8];
只能得5分 https://www.luogu.com.cn/record/228171193
而
int n,p[N][8],maxn=0,cnt[10],ans=0,c[4],a[N];
则可以AC https://www.luogu.com.cn/record/228170335
(这俩难道不一样么