結果

問題 No.9 モンスターのレベル上げ
ユーザー recososorecososo
提出日時 2020-02-28 18:36:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 173,556 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 16:30:20
合計ジャッジ時間 3,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 206 ms
5,248 KB
testcase_03 AC 161 ms
5,248 KB
testcase_04 AC 86 ms
5,248 KB
testcase_05 AC 54 ms
5,248 KB
testcase_06 AC 19 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 27 ms
5,248 KB
testcase_09 AC 202 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 151 ms
5,248 KB
testcase_12 AC 110 ms
5,248 KB
testcase_13 AC 109 ms
5,248 KB
testcase_14 AC 204 ms
5,248 KB
testcase_15 AC 190 ms
5,248 KB
testcase_16 AC 5 ms
5,248 KB
testcase_17 AC 117 ms
5,248 KB
testcase_18 AC 99 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;cin >> n;
    vector<int> a(n),b(n);
    for(int i=0;i<n;i++){
        cin >> a[i];
    }
    for(int i=0;i<n;i++){
        cin >> b[i];
    }
    int ans=1e5;
    const int t=10000;
    for(int i=0;i<n;i++){
        priority_queue<int,vector<int>,greater<int>> pq;
        for(int j=0;j<n;j++){
            pq.push(a[j]*t);
        }
        int tmp=0;
        for(int j=0;j<n;j++){
            int u=pq.top()/t,v=pq.top()%t;
            pq.pop();
            u+=b[(i+j)%n]/2;
            v++;
            pq.push(u*t+v);
            tmp=max(tmp,v);
        }
        if(tmp<=ans){
            ans=tmp;
        }
    }
    cout << ans << endl;
}
0