摘要:
2019 January Silver T1.Grass Planting 这道题是一道结论题:我们发现点的度数越多,答案越多,所以我们可以发现答案为最大的点的度数+1。 #include <bits/stdc++.h> using namespace std; const int N = 1e5 阅读全文
摘要:
T1 拼接单词 我这里是暴力做法,30tps,set内存爆了 #include <bits/stdc++.h> using namespace std; vector<string> ve; int main() { string a, b; cin >> a >> b; auto n = a.si 阅读全文