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
  • 相关阅读:
    开始学习Angular Mobile UI
    .Net程序员飞扬有用的85个工具
    数据库查询效率,百万数据测试
    SQL Join的一些总结
    MODRD 指令 读取地址是哪儿来的
    如何在不同编程语言中获取现在的Unix时间戳(Unix timestamp)?
    easyui datagrid 的分页刷新按钮
    HttpRequest Get Post,WebClient Get
    GetWindowThreadProcessId用法(转)
    EASYUI DATAGRID 多列复选框CheckBox
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7421093.html
Copyright © 2011-2022 走看看