結果

問題 No.9 モンスターのレベル上げ
ユーザー NotationNapNotationNap
提出日時 2015-04-22 04:26:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 514 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 165,408 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 22:34:52
合計ジャッジ時間 6,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 514 ms
5,376 KB
testcase_03 AC 401 ms
5,376 KB
testcase_04 AC 209 ms
5,376 KB
testcase_05 AC 137 ms
5,376 KB
testcase_06 AC 47 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 63 ms
5,376 KB
testcase_09 AC 487 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 430 ms
5,376 KB
testcase_12 AC 330 ms
5,376 KB
testcase_13 AC 237 ms
5,376 KB
testcase_14 AC 488 ms
5,376 KB
testcase_15 AC 448 ms
5,376 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 287 ms
5,376 KB
testcase_18 AC 239 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long Int;
#define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i))

int A[1500];
int B[1500];
int main() {
	int N;
	cin >> N;
	REP(i, N) cin >> A[i];
	REP(i, N) cin >> B[i];

	int ans = 999999999;
	REP(i, N) {
		priority_queue<pair<int, int>> pq;
		REP(j, N) {
			pq.push(make_pair(-A[j], 0));
		}
		for (int j = 0; j < N; j++) {
			pair<int,int> top = pq.top();
			pq.pop();
			top.first -= B[(i + j) % N] / 2;
			top.second--;
			pq.push(top);
		}

		int maxButtle = 0;
		while (!pq.empty()) {
			int buttle = -pq.top().second;
			pq.pop();
			maxButtle = max(maxButtle, buttle);
		}
		ans = min(ans, maxButtle);
	}
	cout << ans << endl;
}
0