結果

問題 No.1008 Bench Craftsman
ユーザー mugen_1337mugen_1337
提出日時 2020-10-24 20:53:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,161 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 205,832 KB
実行使用メモリ 9,992 KB
最終ジャッジ日時 2024-07-21 15:44:09
合計ジャッジ時間 9,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 345 ms
9,992 KB
testcase_06 AC 133 ms
8,192 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 151 ms
6,944 KB
testcase_10 AC 339 ms
9,968 KB
testcase_11 AC 337 ms
9,984 KB
testcase_12 AC 331 ms
9,896 KB
testcase_13 AC 335 ms
9,856 KB
testcase_14 AC 338 ms
9,988 KB
testcase_15 AC 94 ms
6,940 KB
testcase_16 AC 332 ms
9,992 KB
testcase_17 AC 93 ms
6,944 KB
testcase_18 AC 345 ms
9,988 KB
testcase_19 AC 335 ms
9,856 KB
testcase_20 AC 119 ms
6,940 KB
testcase_21 AC 120 ms
6,944 KB
testcase_22 AC 172 ms
6,940 KB
testcase_23 AC 253 ms
8,452 KB
testcase_24 AC 228 ms
6,940 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 128 ms
6,940 KB
testcase_28 AC 191 ms
7,692 KB
testcase_29 AC 284 ms
8,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define INF 1000000000
using ll=long long;
int n,m,x[100010];
ll wsum[100010],a[100010],w[100010];
bool f(ll c){
if(c==0) return true;
vector<ll> in(n,0),ic(n,0),out(n,0),oc(n,0),cost(n,0);
ll sum=0,cnt=0;
rep(i,m){in[x[i]]+=w[i];ic[x[i]]++;out[min(n-1,x[i]+(int)(w[i]/c))]+=w[i]%c;oc[min(n-1,x[i]+(int)(w[i]/c))]++;}
rep(i,n){sum+=in[i];cnt+=ic[i]-oc[i];cost[i]+=sum;sum-=out[i]+c*cnt;}
in.assign(n,0);ic.assign(n,0);out.assign(n,0);oc.assign(n,0);sum=0,cnt=0;
rep(i,m){in[x[i]]+=w[i];ic[x[i]]++;out[max(0,x[i]-(int)(w[i]/c))]+=w[i]%c;oc[max(0,x[i]-(int)(w[i]/c))]++;}
for(int i=n-1;i>=0;i--){sum+=in[i];cnt+=ic[i]-oc[i];cost[i]+=sum;sum-=out[i]+c*cnt;}
rep(i,n)if(cost[i]-wsum[i]>=a[i])return false;
return true;
}
signed main(){
    cin>>n>>m;
    rep(i,n)cin>>a[i];
    rep(i,m){cin>>x[i]>>w[i];x[i]--;wsum[x[i]]+=w[i];}
    rep(i,n)if(wsum[i]>=a[i]){cout<<-1<<endl;return 0;}
    ll sum=0,lw=0,hi=INF,ans=INF;
    rep(i,m) sum+=w[i];
    while(lw<=hi){
        ll M=(lw+hi)/2;
        if(f(M)){
            ans=M;hi=M-1;
        }else lw=M+1;
    }
    cout<<ans<<endl;
}
0