結果

問題 No.9 モンスターのレベル上げ
ユーザー ttkkggwwttkkggww
提出日時 2022-03-08 18:56:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 760 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 4,923 ms
コンパイル使用メモリ 267,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 19:00:34
合計ジャッジ時間 11,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 760 ms
6,944 KB
testcase_03 AC 599 ms
6,944 KB
testcase_04 AC 313 ms
6,940 KB
testcase_05 AC 204 ms
6,940 KB
testcase_06 AC 70 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 95 ms
6,940 KB
testcase_09 AC 727 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 466 ms
6,940 KB
testcase_12 AC 264 ms
6,944 KB
testcase_13 AC 394 ms
6,940 KB
testcase_14 AC 738 ms
6,944 KB
testcase_15 AC 675 ms
6,944 KB
testcase_16 AC 11 ms
6,944 KB
testcase_17 AC 431 ms
6,940 KB
testcase_18 AC 357 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int n;
vector<int> a,b;
using P = pair<int,int>;

void solve(){
	int out = n;
	for(int i = 0;i<n;i++){
		multiset<P> mst;
		for(auto &j:a)mst.emplace(j,0);
		for(int j = 0;j<n;j++){
			auto it = mst.begin();
			auto p = *it;
			mst.erase(it);
			p.second++;
			p.first += b[(i+j)%n]/2;
			mst.insert(p);
		}
		int ans = 0;
		for(auto &j:mst)ans = max(ans,j.second);
		out = min(ans,out);
	}
	cout<<out<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n;
	a = vector<int>(n);
	b = vector<int>(n);
	for(auto &i:a)cin >> i;
	for(auto &i:b)cin >> i;
	solve();
}
0