#include #ifndef LOCAL_ #define fprintf if( false ) fprintf #endif // LOCAL_ #define dumpi(x1) fprintf(stderr, "#%s.%d (%s) = (%d)\n", __func__, __LINE__, #x1, x1); #define dumpii(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%d, %d)\n", __func__, __LINE__, #x1, #x2, x1, x2); #define dumpiii(x1, x2, x3) fprintf(stderr, "#%s.%d (%s, %s, %s) = (%d, %d, %d)\n", __func__, __LINE__, #x1, #x2, #x3, x1, x2, x3); #define dumpl(x1) fprintf(stderr, "#%s.%d (%s) = (%ld)\n", __func__, __LINE__, #x1, x1); #define dumpd(x1) fprintf(stderr, "#%s.%d (%s) = (%lf)\n", __func__, __LINE__, #x1, x1); int b; int n; int xs[16]; int total; int max; long calc(long t) { long res = 0; for(int i = 0; i < n; ++i) { res += std::abs(t - xs[i]); } return t * n <= total and t <= max ? res : -1; } void init() { total += b; for(int i = 0; i < n; ++i) { total += xs[i]; max = std::max(max, xs[i]); } } int main() { scanf("%d", &b); scanf("%d", &n); for(int i = 0; i < (int)n; ++i) { scanf("%d", &xs[i]); } init(); long x = 0; for(int i = 30; i >= 0; --i) { long shift = (1LL << i); if( calc(x + shift) >= 0 ) { x = x + shift; } } dumpii((int)x, (int)calc(x)); printf("%ld\n", calc(x)); return 0; }