记录编号 44378 评测结果 A
题目名称 排队接水 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2012-10-18 15:13:01 内存使用 1.96 MiB
显示代码纯文本
#include <cstdio>
#include <algorithm>
using namespace std;
struct shui {
    int w, u;
    inline bool operator < (const shui x) const {
        return w < x.w;
    }
} a[200];
int n, p, s;
int main() {
    freopen("jieshui.in", "r", stdin);
    freopen("jieshui.out", "w", stdout);
    scanf("%d", &n);
    for(int i=0; i<n; i++) {
        scanf("%d", &a[i].w);
        a[i].u = i + 1;
    } sort(a, a+n);
    for(int i=0; i<n; i++)
        printf("%d ", a[i].u);
    for(int i=0; i<n; i++) {
        p += s;
        s += a[i].w;
    } printf("\n%.2lf\n", (double) p / n);
    return 0;
}