• bzoj 3293 数学整理


    和1045一模一样,找到这道题的时候还愣了下神,最后发现样例都是

    一样的,直接粘了1045的代码,具体题解看

    http://www.cnblogs.com/BLADEVIL/p/3468729.html

    /**************************************************************
        Problem: 3293
        User: BLADEVIL
        Language: Pascal
        Result: Accepted
        Time:296 ms
        Memory:15852 kb
    ****************************************************************/
     
    //By BLADEVIL
    var
        n                   :longint;
        a, sum              :array[0..1000010] of int64;
        i                   :longint;
        ave                 :int64;
        ans, k              :int64;
    procedure swap(var a,b:int64);
    var
        c                   :int64;
    begin
        c:=a; a:=b; b:=c;
    end;
         
    procedure qs(low,high:longint);
    var
        i, j, xx            :longint;
    begin
        i:=low; j:=high; xx:=sum[(i+j) div 2];
        while i<j do
        begin
            while sum[i]<xx do inc(i);
            while sum[j]>xx do dec(j);
            if i<=j then
            begin
                swap(sum[i],sum[j]);
                inc(i); dec(j);
            end;
        end;
        if i<high then qs(i,high);
        if j>low then qs(low,j);
    end;
         
    begin
        read(n);
        for i:=1 to n do read(a[i]);
        for i:=1 to n do sum[i]:=sum[i-1]+a[i];
        ave:=sum[n] div n;
        for i:=1 to n do sum[i]:=sum[i]-i*ave;
        qs(1,n);
        k:=sum[(1+n) div 2];
        for i:=1 to n do ans:=ans+abs(sum[i]-k);
        writeln(ans);
    end.
  • 相关阅读:
    Web 自动化测试(Selenium)认识
    windows 环境下 Tomcat 使用以及Jenkins 监听项目
    ant 环境配置以及 build.xml 文件解析
    requests + pytest + allure 结合使用并生成测试报告
    requests 接口测试
    allure 结合 pytest 生成测试报告
    测试报告——allure框架
    单元测试 pytest 文件读取(CSV, XML)
    单元测试 pytest 模块
    Java中把一个对象复制给另外一个对象引发的思考
  • 原文地址:https://www.cnblogs.com/BLADEVIL/p/3496076.html
Copyright © 2020-2023  润新知