摘要:
Atcoder训练 Template Matching 暴力枚举,问题给出的nxn字符串数组有没有包含下面的mxm数组 #include <bits/stdc++.h> using namespace std; using ll =long long; int n,m; int main(){ in 阅读全文
摘要:
Atcoder训练 Flipping Signs 思维 通过打表观察发现,当负数为偶数时可以全部转化为正,不为偶数时,会留下一个负数,我们取绝对值最小的即可。 #include <bits/stdc++.h> using namespace std; using ll=long long; ll c 阅读全文