摘要: #include<bits/stdc++.h> using namespace std; const int N = 1e5+10; int n,s[N],res[N]; void merge_sort(int s[],int l,int r) { int mid = (l+r)>>1; if(l> 阅读全文
posted @ 2024-02-15 20:19 solutide 阅读(19) 评论(0) 推荐(0) 编辑