結果

問題 No.9 モンスターのレベル上げ
ユーザー finefine
提出日時 2016-03-31 20:41:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 383 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 164,636 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 23:21:26
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 383 ms
5,376 KB
testcase_03 AC 299 ms
5,376 KB
testcase_04 AC 157 ms
5,376 KB
testcase_05 AC 103 ms
5,376 KB
testcase_06 AC 35 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 46 ms
5,376 KB
testcase_09 AC 372 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 302 ms
5,376 KB
testcase_12 AC 244 ms
5,376 KB
testcase_13 AC 190 ms
5,376 KB
testcase_14 AC 371 ms
5,376 KB
testcase_15 AC 334 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 215 ms
5,376 KB
testcase_18 AC 178 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef pair<int, int> M;
typedef priority_queue<M, vector<M>, greater<M> > P;

int sol(P pq, int s, int n, const int* b) {
    int ans = 0, idx;
    for (int i = 0; i < n; i++) {
        idx = (i + s) % n;
        M x = pq.top();
        pq.pop();
        x.first += b[idx] / 2;
        x.second++;
        pq.push(x);
    }
    while (!pq.empty()) {
        M x = pq.top();
        pq.pop();
        ans = max(ans, x.second);
    }
    return ans;
}

int main(){
    int n, tmp, b[1500], ans;
    cin >> n;
    P pq;
    for(int i = 0; i < n; i++) {
        cin >> tmp;
        pq.push(make_pair(tmp, 0));
    }
    for(int i = 0; i < n; i++) {
        cin >> b[i];
    }
    ans = n;
    for(int i = 0; i < n; i++) {
        ans = min(ans, sol(pq, i, n, b));
    }
    cout << ans << "\n"; 
    return 0;
}
0