zoukankan      html  css  js  c++  java
  • Codeforces 348A. Mafia

    One day n friends gathered together to play "Mafia". During each round of the game some player must be the supervisor and other n - 1 people take part in the game. For each person we know in how many rounds he wants to be a player, not the supervisor: the i-th person wants to play ai rounds. What is the minimum number of rounds of the "Mafia" game they need to play to let each person play at least as many rounds as they want?

    Input

    The first line contains integer n (3 ≤ n ≤ 105). The second line contains n space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the i-th number in the list is the number of rounds the i-th person wants to play.

    Output

    In a single line print a single integer — the minimum number of game rounds the friends need to let the i-th person play at least ai rounds.

    Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

    二分搜索

    关于判定函数就是将数组排序,设当前共有n盘然后对于i来说,他可以最多当n-a[i]盘裁判,所以求出总数是否比n大就可以了

    #include <iostream>
    #include <algorithm>
    #include <cstring>
    using namespace std;
    typedef long long LL;
    
    LL a[100005],sum[100005];
    LL ans,sums = 0;
    LL maxa,n;
    
    bool oks(LL now){
      LL index = upper_bound(a+1,a+1+n,now) - (a+1);
      // cout << now << index << endl;
      if (now * index - sum[index] >= now){
        return true;
      }
      return false;
    }
    LL search(LL l,LL r){
      // cout << l << r << endl;
      if (l == r){
        return l;
      }
      if (l+1 == r){
        if (oks(l)) return l;
        return r;
      }
      LL mid = l + (r - l) / 2;
      if (oks(mid)){
        return search(l,mid);
      }
      else {
        return search(mid+1,r);
      }
    }
    
    int main(){
      // freopen("test.in","r",stdin);
      cin >> n;
      maxa = 0;
      sum[0] = 0;
      for (int i=1;i<=n;i++){
        cin >> a[i];
        sums += a[i];
        sum[i] = sum[i-1] + a[i];
        maxa = max(maxa,a[i]);
      }
      sort(a+1,a+1+n);
      ans = search(maxa,sums);
      cout << ans;
      // cout << oks(3) << endl;
    }
    View Code
  • 相关阅读:
    【pandas】读取csv并拆分列
    【Python】读写csv、xlsx乱码,一篇文章搞定
    【mac】彻底移出安装包密码
    【finebi】基于波士顿矩阵模型的应用
    【pandas】3种方法搞定,分组排序求topN
    Supervisord远程命令执行漏洞(CVE-2017-11610)复现
    Visual studio + Qt VS Tool 开发环境相关问题汇总
    SQL学习(五) 高级处理
    SQL学习(四)集合运算
    SQL学习(三) 复杂查询
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7421093.html
Copyright © 2011-2022 走看看