AcWing 785. 快速排序 2022-6-10 11:55 | 880 | 2 | OI竞赛 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-6-10 11:55 | 876 | 1 | OI竞赛 1 字 | 几秒读完 cin.tie(nullptr)->sync_with_stdio(false);