結果

問題 No.9 モンスターのレベル上げ
ユーザー cocolleaguecocolleague
提出日時 2017-02-04 17:15:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 424 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 165,520 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:54:47
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 424 ms
6,940 KB
testcase_03 AC 338 ms
6,940 KB
testcase_04 AC 175 ms
6,944 KB
testcase_05 AC 116 ms
6,940 KB
testcase_06 AC 40 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 53 ms
6,940 KB
testcase_09 AC 417 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 347 ms
6,940 KB
testcase_12 AC 290 ms
6,944 KB
testcase_13 AC 214 ms
6,940 KB
testcase_14 AC 418 ms
6,944 KB
testcase_15 AC 377 ms
6,944 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 243 ms
6,940 KB
testcase_18 AC 199 ms
6,944 KB
testcase_19 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
typedef long long ll;
static const int INF = 1e8;

int main(void){
	int N;
	int a[3010],b[3010];
	cin >> N;
    rep(i,N){
    	cin >> a[i];
        a[i+N] = a[i];
     }
    rep(i,N){
    	cin >> b[i];
    	b[i+N] = b[i];
    }
    int ans = INF;
    rep(i,N){
    priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
    for(int j=0;j<N;++j){
     pq.push(make_pair(a[j],0));
    }
    for(int j = i; j < i + N;j++){
    	int llv=pq.top().first;
    	int t = pq.top().second;
    	pq.pop();
    	int lvup = b[j] /2;
    	pq.push(make_pair(llv + lvup,t+1));
    }
    int tmp = 0;
    while(!pq.empty()){
    	int t = pq.top().second;pq.pop();
    	tmp = max(tmp,t);
    }
    ans = min(ans,tmp);

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