結果

問題 No.9 モンスターのレベル上げ
ユーザー maimai
提出日時 2016-06-14 21:35:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 999 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 175,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:30:48
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 280 ms
6,940 KB
testcase_03 AC 221 ms
6,944 KB
testcase_04 AC 115 ms
6,944 KB
testcase_05 AC 74 ms
6,944 KB
testcase_06 AC 26 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 35 ms
6,944 KB
testcase_09 AC 275 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 215 ms
6,944 KB
testcase_12 AC 176 ms
6,940 KB
testcase_13 AC 157 ms
6,944 KB
testcase_14 AC 273 ms
6,940 KB
testcase_15 AC 248 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 156 ms
6,944 KB
testcase_18 AC 131 ms
6,944 KB
testcase_19 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl;
typedef long long int ll;

int calc(vector<int> &ev,vector<int> &mv,int offset){
    priority_queue<pair<int,int>> pq;
    for (int e:mv)
        pq.push(make_pair(-e,0));
    
    int i,j,max=0;
    for (j=0;j<ev.size();j++){
        i=(j+offset)%ev.size();
        int p=-pq.top().first;
        int q=-pq.top().second;pq.pop();
        p+=ev[i]/2;
        if (max<++q) max=q;
        pq.push(make_pair(-p,-q));
    }
    return max;
}

int main(){
    int i,j,k,l;
    int x,y,d;
    int n,m;
    
    cin >> n;
    vector<int> mee(n);
    vector<int> ene(n);
    
    for (i=0;i<n;i++){
        scanf("%d",&j);
        mee[i]=j;
    }
    for (i=0;i<n;i++){
        scanf("%d",&j);
        ene[i]=j;
    }
    
    int min=0xFFFF;
    for (i=0;i<n;i++){
        int u=calc(ene,mee,i);
        if (min>u) min=u;
    }
    cout<<min<<endl;
    
    
    return 0;
    
}
0