結果

問題 No.9 モンスターのレベル上げ
ユーザー sigma425sigma425
提出日時 2015-04-25 10:48:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 484 ms / 5,000 ms
コード長 777 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 166,088 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 22:35:22
合計ジャッジ時間 6,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 484 ms
6,940 KB
testcase_03 AC 382 ms
6,944 KB
testcase_04 AC 201 ms
6,940 KB
testcase_05 AC 132 ms
6,944 KB
testcase_06 AC 45 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 60 ms
6,940 KB
testcase_09 AC 467 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 392 ms
6,944 KB
testcase_12 AC 288 ms
6,940 KB
testcase_13 AC 201 ms
6,944 KB
testcase_14 AC 468 ms
6,944 KB
testcase_15 AC 422 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 269 ms
6,940 KB
testcase_18 AC 229 ms
6,944 KB
testcase_19 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep1(i,n) for(int i=1;i<=(int)(n);i++)
#define all(c) c.begin(),c.end()
#define pb push_back
#define fs first
#define sc second
#define show(x) cout << #x << " = " << x << endl
#define chmin(x,y) x=min(x,y)
#define chmax(x,y) x=max(x,y)
using namespace std;
typedef pair<int,int> P;
int B[1500];
int main(){
	int N;
	cin>>N;
	priority_queue<P,vector<P>,greater<P> > que,qc;
	rep(i,N){
		int a;
		cin>>a;
		qc.push(P(a,0));
	}
	rep(i,N) cin>>B[i];
	int mn=1e9;
	rep(i,N){
		que=qc;
		rep(j,N){
			P p=que.top();
			que.pop();
			que.push(P(p.fs+B[(i+j)%N]/2,p.sc+1));
		}
		int mx=0;
		while(!que.empty()){
			P p=que.top();
			que.pop();
			chmax(mx,p.sc);
		}
		chmin(mn,mx);
	}
	cout<<mn<<endl;
}
0