标签:esc using put cout 需要 时间 pre for 代码
http://acm.hdu.edu.cn/showproblem.php?pid=2083
#include <bits/stdc++.h> using namespace std; int A(int i,int n,int x[]){ int sum=0; for(int j=1;j<=n;j++) { sum+=abs(x[i]-x[j]); } return sum; } int a[501]; int main() { int M; scanf("%d",&M); for(int i=1;i<=M;i++) { int N; scanf("%d",&N); for(int j=1;j<=N;j++) { cin>>a[j]; } sort(a+1,a+1+N); int minn= A(1,N,a); for(int s=1;s<=N;s++) { if(A(s,N,a)<minn) minn=A(s,N,a); } cout<<minn<<endl; } return 0; }
标签:esc using put cout 需要 时间 pre for 代码
原文地址:https://www.cnblogs.com/zlrrrr/p/9246089.html