03 2021 档案
摘要:#include<bits/stdc++.h> using namespace std; #define far(i,t,n) for(int i=t;i<n;++i) typedef long long ll; typedef unsigned long long ull; char t[1000
阅读全文
摘要:#include <iostream> #include<bits/stdc++.h> using namespace std; void quicksort(vector<int>&v,int l,int r) { if(l>=r) return ; int val=v[l]; int ll=l,
阅读全文