結果

問題 No.9 モンスターのレベル上げ
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-07 00:18:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 753 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 208,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 00:18:17
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 242 ms
5,376 KB
testcase_03 AC 209 ms
5,376 KB
testcase_04 AC 99 ms
5,376 KB
testcase_05 AC 65 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 30 ms
5,376 KB
testcase_09 AC 233 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 172 ms
5,376 KB
testcase_12 AC 155 ms
5,376 KB
testcase_13 AC 138 ms
5,376 KB
testcase_14 AC 227 ms
5,376 KB
testcase_15 AC 204 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 131 ms
5,376 KB
testcase_18 AC 110 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    vector<int> A(N),B(N);
    for(auto &a : A) cin >> a;
    for(auto &b : B) cin >> b;
    for(int i=0; i<N; i++) B.push_back(B.at(i));

    int answer = 1e9;
    for(int i=0; i<N; i++){
        int now = 0;
        priority_queue<pair<int,int>,vector<pair<int,int>>,greater<>> Q;
        for(int k=0; k<N; k++) Q.push({A.at(k),0});
        for(int k=i; k<i+N; k++){
            auto[level,fight] = Q.top(); Q.pop();
            level += B.at(k)/2; fight++;
            now = max(fight,now); 
            Q.push({level,fight});  
        }
        answer = min(answer,now);
    }
    cout << answer << endl;
}
0