結果

問題 No.9 モンスターのレベル上げ
ユーザー TomorrowNextTomorrowNext
提出日時 2021-04-09 01:25:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 490 ms / 5,000 ms
コード長 1,077 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 175,376 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 04:27:16
合計ジャッジ時間 7,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 490 ms
6,940 KB
testcase_03 AC 401 ms
6,944 KB
testcase_04 AC 207 ms
6,944 KB
testcase_05 AC 134 ms
6,940 KB
testcase_06 AC 46 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 62 ms
6,944 KB
testcase_09 AC 476 ms
6,940 KB
testcase_10 AC 2 ms
6,948 KB
testcase_11 AC 431 ms
6,940 KB
testcase_12 AC 338 ms
6,940 KB
testcase_13 AC 413 ms
6,944 KB
testcase_14 AC 481 ms
6,940 KB
testcase_15 AC 438 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 284 ms
6,940 KB
testcase_18 AC 237 ms
6,944 KB
testcase_19 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;
using ll = long long;

void Main() {
    int N;
    cin >> N;
    vector<int> A(N, 0), B(N, 0);
    for (int i = 0; i < N; ++i) {
        cin >> A[i];
    }
    for (int i = 0; i < N; ++i) {
        cin >> B[i];
    }

    typedef pair<pair<int, int>, int> level_nb_id;
    int ans = N;
    for (int i = 0; i < N; ++i) {
        priority_queue<level_nb_id, vector<level_nb_id>, greater<level_nb_id>> q;
        for (int j = 0; j < N; ++j) {
            q.push(make_pair(make_pair(A[j], 0), j));
        }
        for (int j = 0; j < N; ++j) {
            level_nb_id curr = q.top();
            q.pop();
            curr.first.first += B[(i + j) % N] / 2;
            curr.first.second += 1;
            q.push(curr);
        }
        int temp = 0;
        for (int j = 0; j < N; ++j) {
            temp = max(temp, q.top().first.second);
            q.pop();
        }
        ans = min(ans, temp);
    }
    cout << ans << endl;
}

int main() {
    std::cout << std::fixed << std::setprecision(15);
    Main();
    return 0;
}
0