RE求助

P2135 方块消除

@[chentianyi](/user/171890) ``` for(int i=n-1;i;i--) ``` 不要这么写,写i>0试一下
by tangrunxi @ 2020-03-16 14:30:16


这个很容易RE
by tangrunxi @ 2020-03-16 14:30:40


改了还是RE啊。。。 [@tangrunxi](https://www.luogu.com.cn/user/231147) 更奇葩的是两次都是一个AC,剩下全RE
by chentianyi @ 2020-03-16 15:36:45


[@chentianyi](https://www.luogu.com.cn/user/171890) ```cpp for(int i=1;i<=m;i++) for(int j=1;j<=p[i];j++) a[++cnt]=t[i]; ``` 这里会导致RE 把a数组开到3000就差不多了
by DYH060310 @ 2020-03-16 17:02:14


[@DYH060310](https://www.luogu.com.cn/user/120856) 还是RE(哭泣ing) ~~这测评器是有鬼吧~~
by chentianyi @ 2020-03-18 12:55:58


|