摘要: 传送门 A.Odd Set 思路: 判断奇偶个数是否相等。 ##代码: int a[maxn]; void solve(){ int n=read,cnt0=0,cnt1=0; rep(i,1,2*n){ a[i]=read; if(a[i]&1) cnt1++; else cnt0++; } if 阅读全文
posted @ 2021-07-16 20:44 OvO1 阅读(45) 评论(0) 推荐(0) 编辑