emmm直接枚举x,二分查找最大化模板,即可。 #include <algorithm> #include <string.h> using namespace std; typedef long long ll; ll t,n,k,v[100000],c[100000],guihua[100000]; bool cmp(ll a,ll b) { return a>b; } bool judge(ll x) { ll sums=0; for(int i=1;i<=n;i++) { guihua[i]=v[i]-...