摘要:
比赛链接 A 题解 知识点:模拟。 照着模拟(细节加0防炸char,虽然这里没用)。 时间复杂度 $O(1)$ 空间复杂度 $O(1)$ 代码 #include <bits/stdc++.h> using namespace std; int main(){ std::ios::sync_with_ 阅读全文
摘要:
归并排序模板。 #include <bits/stdc++.h> using namespace std; long long cnt = 0; int a[1000007], b[1000007]; void merge_sort(int l, int r) { if (l == r) retur 阅读全文