結果

問題 No.9 モンスターのレベル上げ
ユーザー commy
提出日時 2018-08-10 22:31:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 1,292 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 84,140 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-23 05:58:13
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <queue>
#include <utility>
#include <functional>

#define REP(i, a, b) for (int i = int(a); i < int(b); i++)
#define dump(val) cerr << __LINE__ << ":\t" << #val << " = " << (val) << endl

using namespace std;

typedef long long int lli;
typedef pair<int, int> pii;

template<typename T>
vector<T> make_v(size_t a, T b) {
    return vector<T>(a, b);
}

template<typename... Ts>
auto make_v(size_t a, Ts... ts) {
    return vector<decltype(make_v(ts...))>(a, make_v(ts...));
}

int main() {
    int N;
    cin >> N;
    priority_queue<pii, vector<pii>, greater<pii>> pq;
    REP(i, 0, N) {
        int a;
        cin >> a;
        pq.emplace(a, 0);
    }
    vector<int> B(N);
    REP(i, 0, N) {
        cin >> B[i];
    }
    int ans = N;
    REP(i, 0, N) {
        auto pqt = pq;
        REP(j, 0, N) {
            int idx = (i + j) % N;
            auto elem = pqt.top();
            pqt.pop();
            elem.first += (B[idx] / 2);
            elem.second++;
            pqt.push(elem);
        }
        int tmp = 0;
        while (pqt.size()) {
            tmp = max(tmp, pqt.top().second);
            pqt.pop();
        }
        ans = min(ans, tmp);
    }
    cout << ans << endl;
    return 0;
}
0