标签:之间 creat long head math ring || copy code
有n个人在一个水龙头前排队接水,假如每个人接水的时间为Ti,请编程找出这n个人排队的一种顺序,使得n个人的平均等待时间最小。
10
56 12 1 99 1000 234 33 55 99 812
3 2 7 8 1 4 9 6 10 5
291.90
#include<cstdio> #include <map> #include<iostream> #include<string> #include<cstring> #include<cmath> #include<algorithm> using namespace std; inline int read() {int x=0,f=1;char c=getchar();while(c!=‘-‘&&(c<‘0‘||c>‘9‘))c=getchar();if(c==‘-‘)f=-1,c=getchar();while(c>=‘0‘&&c<=‘9‘)x=x*10+c-‘0‘,c=getchar();return f*x;} typedef long long ll; const int maxn=5e5+10; struct node{ int flag; int time; }a[maxn]; bool cmp(node x,node y){ return x.time<y.time; } int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i].time; a[i].flag=i; } sort(a+1,a+n+1,cmp); for(int i=1;i<n;i++){ printf("%d ",a[i].flag);//小的先接水 } printf("%d\n",a[n].flag); double sum=0; for(int i=1;i<=n;i++){ sum+=(n-i)*a[i].time; } printf("%.2lf",sum*1.0/10); }
标签:之间 creat long head math ring || copy code
原文地址:https://www.cnblogs.com/lipu123/p/12241001.html