摘要: #include<bits/stdc++.h> using namespace std; const int maxn=1e5+10; int n,a[maxn]; void quicksort(int l,int r){ if(l>=r) return; int mid=(l+r)/2; int 阅读全文
posted @ 2025-10-14 08:37 sadmax11 阅读(2) 评论(0) 推荐(0)