wqy的ACM赛H淮南子

Posted equinox-flower

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wqy的ACM赛H淮南子相关的知识,希望对你有一定的参考价值。

把题目给的式子展开,发现是一组二次函数.
直接对称轴求最小值即可.

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <ctime>
#include <map>
#include <set>
#define MEM(x,y) memset ( x , y , sizeof ( x ) )
#define rep(i,a,b) for (int i = (a) ; i <= (b) ; ++ i)
#define per(i,a,b) for (int i = (a) ; i >= (b) ; -- i)
#define pii pair < int , int >
#define one first
#define two second
#define rint read<int>
#define int long long
#define pb push_back
#define db double

using std::queue ;
using std::set ;
using std::pair ;
using std::max ;
using std::min ;
using std::priority_queue ;
using std::vector ;
using std::swap ;
using std::sort ;
using std::unique ;
using std::greater ;

template < class T >
    inline T read () {
        T x = 0 , f = 1 ; char ch = getchar () ;
        while ( ch < '0' || ch > '9' ) {
            if ( ch == '-' ) f = - 1 ;
            ch = getchar () ;
        }
       while ( ch >= '0' && ch <= '9' ) {
            x = ( x << 3 ) + ( x << 1 ) + ( ch - 48 ) ;
            ch = getchar () ;
       }
       return f * x ;
}

const int N = 1e5 + 100 ;

int n , v[N] , ans ;
double sum ;

signed main (int argc , char * argv[]) {
    n = rint () ;
    rep ( i , 1 , n ) v[i] = rint () , sum += v[i] ;
    db d = sum / (db) n ;
    int tmp = d < 0.0 ? (db)d - 0.5 : (db)d + 0.5 ;
    printf ("%lld
" , tmp ) ;
    rep ( i , 1 , n ) ans += ( ( v[i] - tmp ) * ( v[i] - tmp ) ) ;
    printf ("%lld
" , ans ) ;
    system ("pause") ; return 0 ;
}

以上是关于wqy的ACM赛H淮南子的主要内容,如果未能解决你的问题,请参考以下文章

ACM-ICPC 2018青岛网络赛-H题

2013 ACM区域赛长沙 H zoj 3733 (hdu 4798) Skycity

ACM2016级新生第三周训练赛

ACM 2018 南京网络赛H题Set解题报告

[2018 ACM-ICPC 焦作赛区网络赛] H - String and Times(后缀自动机)

湖南大学ACM程序设计新生杯大赛(同步赛)H - Yuanyuan Long and His Ballons