結果

問題 No.9 モンスターのレベル上げ
ユーザー imulanimulan
提出日時 2016-06-20 14:21:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 1,044 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 175,528 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 23:31:28
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 274 ms
6,940 KB
testcase_03 AC 219 ms
6,940 KB
testcase_04 AC 113 ms
6,944 KB
testcase_05 AC 73 ms
6,940 KB
testcase_06 AC 25 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 269 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 197 ms
6,944 KB
testcase_12 AC 172 ms
6,940 KB
testcase_13 AC 180 ms
6,940 KB
testcase_14 AC 270 ms
6,940 KB
testcase_15 AC 242 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 154 ms
6,944 KB
testcase_18 AC 127 ms
6,948 KB
testcase_19 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define mp make_pair
#define pb push_back
#define fi first
#define se second

typedef pair<int,int> pi;

int main()
{
    int n;
    cin >>n;
    vector<int> a(n),b(n);
    rep(i,n) scanf(" %d", &a[i]);
    rep(i,n) scanf(" %d", &b[i]);

    int ans=n;

    //スタート位置
    rep(i,n)
    {
        priority_queue<pi,vector<pi>,greater<pi>> que;

        //(レベル,戦闘回数)
        rep(j,n) que.push(pi(a[j],0));

        //最大の戦闘回数
        int t=0;

        //バトルしていく
        rep(j,n)
        {
            pi m=que.top();
            que.pop();

            m.fi+=b[(i+j)%n]/2;
            ++m.se;

            t=max(t,m.se);

            que.push(m);
        }

        //最小値更新
        ans=min(ans,t);
    }



    cout << ans << endl;
    return 0;
}
0