結果

問題 No.9 モンスターのレベル上げ
ユーザー h_nosonh_noson
提出日時 2016-06-19 20:05:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 927 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 72,788 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:31:14
合計ジャッジ時間 3,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 272 ms
6,944 KB
testcase_03 AC 212 ms
6,944 KB
testcase_04 AC 111 ms
6,940 KB
testcase_05 AC 74 ms
6,940 KB
testcase_06 AC 27 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 35 ms
6,944 KB
testcase_09 AC 262 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 197 ms
6,940 KB
testcase_12 AC 183 ms
6,940 KB
testcase_13 AC 160 ms
6,940 KB
testcase_14 AC 259 ms
6,940 KB
testcase_15 AC 236 ms
6,944 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 155 ms
6,940 KB
testcase_18 AC 127 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <queue>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

int main(void) {
    int i, n;
    int a[1500], b[1500];
    cin >> n;
    rep (i,n) cin >> a[i];
    rep (i,n) cin >> b[i];

    int s, ans = INF;
    rep (s,n) {
        int count = 0;
        priority_queue<pair<int,int>> q; // (-level,-count)
        rep (i,n) q.push(make_pair(-a[i],0));
        rep (i,n) {
            auto p = q.top();
            q.pop();
            p.first -= b[(s+i)%n]/2;
            p.second--;
            count = max(count,-p.second);
            q.push(p);
        }
        ans = min(count,ans);
    }
    cout << ans << endl;
    return 0;
}
0