AcWing 785. 快速排序 2022-4-18 19:17 | 61 | 1 | 未分类 32 字 | 2 分钟 #include <iostream> using namespace std; const int N = 100010; int num[N], n; void quick_sort(int num[], int l, int r){ if(l >= r) return; int x = num[(l+r)/2],…
OI cin cout 速度优化-关闭同步和缓冲 2022-4-17 16:18 | 66 | 0 | 未分类 1 字 | 几秒读完 cin.tie(nullptr)->sync_with_stdio(false);