結果

問題 No.1808 Fullgold Alchemist
ユーザー nyuminyusupenyuminyusupe
提出日時 2024-09-28 02:03:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 170,792 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-28 02:04:00
合計ジャッジ時間 4,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 34 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 64 ms
6,940 KB
testcase_08 AC 96 ms
6,940 KB
testcase_09 AC 95 ms
6,944 KB
testcase_10 AC 97 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 60 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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){
    int 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