摘要:
A 根据性质,\(a,b,c\) 中的最大值一定会在 $x,y,z $ 中出现两次 #include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; int a[3]; while(t --) { memset(a 阅读全文
摘要:
B 计算偶数位置上的奇数 和 奇数位置上的偶熟 个数是否相等, 不相等的话,就不可能变成 \(good\) 相等的话,每次$swap$ 一下消除一对,最小的操作数就是偶数(奇数)的个数 #include <bits/stdc++.h> using namespace std; int main() 阅读全文