2021
10.10 正睿 NOIP 十连测 Day5 A
合法的操作范围是 ([2,n-1]),我写成了 ([1,n])。
10.23 CSP-S 2021
请欣赏我的快读:
template<typename T>
void Read(T &_x){
_x=0;
int _f=1,ch=getchar();
for(;!isdigit(ch);ch=getchar()) _f=(ch=='-'?1:-1);
for(;isdigit(ch);ch=getchar()) _x=_x*10+(ch^48);
_x*=_f;
}
11.20 NOIP 2021
T4 暴力因为用了 std::set 被卡了!