結果

問題 No.9 モンスターのレベル上げ
ユーザー 37kt_37kt_
提出日時 2015-10-28 11:51:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 1,648 ms
コンパイル使用メモリ 165,360 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 23:15:47
合計ジャッジ時間 4,211 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 246 ms
6,944 KB
testcase_03 AC 198 ms
6,944 KB
testcase_04 AC 101 ms
6,940 KB
testcase_05 AC 68 ms
6,940 KB
testcase_06 AC 24 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 30 ms
6,940 KB
testcase_09 AC 242 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 182 ms
6,940 KB
testcase_12 AC 160 ms
6,940 KB
testcase_13 AC 136 ms
6,944 KB
testcase_14 AC 247 ms
6,944 KB
testcase_15 AC 220 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 141 ms
6,944 KB
testcase_18 AC 117 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef pair<int, int> P;

int n;
int a[1500], b[3000];

int calc(int a[], int b[])
{
	priority_queue<P, vector<P>, greater<P>> pq;
	for (int i = 0; i < n; i++){
		pq.push(P(a[i], 0));
	}

	int res = 0;
	for (int i = 0; i < n; i++){
		int lv, ct;
		tie(lv, ct) = pq.top(); pq.pop();
		pq.push(P(lv + b[i] / 2, ct + 1));
		res = max(res, ct + 1);
	}

	return res;
}

int main()
{
	cin >> n;
	for (int i = 0; i < n; i++) cin >> a[i];
	for (int i = 0; i < n; i++) cin >> b[i], b[i + n] = b[i];
	
	int res = 1 << 28;
	for (int i = 0; i < n; i++){
		res = min(res, calc(a, b + i));
	}

	cout << res << endl;
}
0