結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 260 ms
5,248 KB
testcase_03 AC 209 ms
5,248 KB
testcase_04 AC 108 ms
5,248 KB
testcase_05 AC 70 ms
5,248 KB
testcase_06 AC 24 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 33 ms
5,248 KB
testcase_09 AC 256 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 189 ms
5,248 KB
testcase_12 AC 162 ms
5,248 KB
testcase_13 AC 153 ms
5,248 KB
testcase_14 AC 255 ms
5,248 KB
testcase_15 AC 231 ms
5,248 KB
testcase_16 AC 6 ms
5,248 KB
testcase_17 AC 148 ms
5,248 KB
testcase_18 AC 122 ms
5,248 KB
testcase_19 AC 4 ms
5,248 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