摘要:
确定第一行之后,剩下的几行递推即可,再判断最后一行是否全部一样 跟 Acwing95. 费解的开关 的区别在于,这个题目正面或者反面都可以,写一个 work 函数,传两遍参数就行了 #include <iostream> #include <algorithm> #include <cstring> 阅读全文
摘要:
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() 阅读全文