結果

問題 No.1808 Fullgold Alchemist
ユーザー nyuminyusupenyuminyusupe
提出日時 2024-09-28 02:06:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 168,764 KB
実行使用メモリ 5,612 KB
最終ジャッジ日時 2024-09-28 02:06:56
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 31 ms
5,484 KB
testcase_06 AC 67 ms
5,612 KB
testcase_07 AC 59 ms
5,480 KB
testcase_08 AC 87 ms
5,604 KB
testcase_09 AC 88 ms
5,612 KB
testcase_10 AC 88 ms
5,476 KB
testcase_11 AC 84 ms
5,476 KB
testcase_12 AC 54 ms
5,608 KB
testcase_13 AC 60 ms
5,480 KB
testcase_14 AC 70 ms
5,476 KB
testcase_15 AC 66 ms
5,480 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 14 ms
5,376 KB
testcase_27 AC 18 ms
5,376 KB
testcase_28 AC 85 ms
5,376 KB
testcase_29 AC 28 ms
5,376 KB
testcase_30 AC 22 ms
5,376 KB
testcase_31 AC 74 ms
5,376 KB
testcase_32 AC 43 ms
5,376 KB
testcase_33 AC 61 ms
5,376 KB
testcase_34 AC 82 ms
5,376 KB
testcase_35 AC 57 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0; i< (n); i++)
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int mod = 998244353;
const int inf = (1<<30);
const ll INF = (1ull<<62);

bool check(vector<int> a, int x){
    ll k = 0;
    int n = a.size();
    rep(i,n){
        if(a[i] > x) k += a[i]-x;
        else if(a[i] < x){
            if(x-a[i] > k) return 0;
            k += a[i] - x;
        }
        if(k < 0) return 0;
    }
    return 1;
}

int binary(vector<int> a){
   int l = 0, r = 1e+9 + 5;

   while(l < r){
        int mid = (l+r+1)/2;
        if(check(a,mid)) l = mid;
        else r = mid-1;
   } 
   return l;
}


int main(){
    int n,m; cin>>n>>m;
    vector<int> a(n);
    rep(i,n) cin>>a[i];
    cout<<binary(a)/m<<endl;
}
0