結果

問題 No.9 モンスターのレベル上げ
ユーザー ant2357ant2357
提出日時 2017-08-03 00:03:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 1,086 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 201,912 KB
最終ジャッジ日時 2025-01-05 02:03:16
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,824 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 223 ms
6,820 KB
testcase_03 AC 177 ms
6,820 KB
testcase_04 AC 95 ms
6,816 KB
testcase_05 AC 61 ms
6,816 KB
testcase_06 AC 22 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 28 ms
6,820 KB
testcase_09 AC 215 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 132 ms
6,816 KB
testcase_12 AC 113 ms
6,816 KB
testcase_13 AC 124 ms
6,820 KB
testcase_14 AC 219 ms
6,816 KB
testcase_15 AC 198 ms
6,820 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 122 ms
6,820 KB
testcase_18 AC 102 ms
6,820 KB
testcase_19 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

const int INF = (1 << 30) - 1;

int solve(int n, vector<int> a, vector<int> b, priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> partyInfo) {
	int res = INF;
	for (int i = 0; i < n; i++) {
		int fightNumMax = 0;
		
		priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq = partyInfo;
		for (int j = 0; j < n; j++) {
			int now = (i + j < n ? i + j : i + j - n);

			pair<int, int> player = pq.top(); pq.pop();
			player.first += b[now] / 2;
			player.second++;

			fightNumMax = max(fightNumMax, player.second);
			pq.push(player);
		}
		res = min(res, fightNumMax);
	}

	return res;
}

int main() {
	int n;
	cin >> n;

	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}

	vector<int> b(n);
	for (int i = 0; i < n; i++) {
		cin >> b[i];
	}

	priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> partyInfo;
	for (int i = 0; i < n; i++) {
		partyInfo.push(make_pair(a[i], 0));
	}

	cout << solve(n, a, b, partyInfo) << endl;
	return 0;
}
0