結果

問題 No.9 モンスターのレベル上げ
コンテスト
ユーザー mukadenodaiou
提出日時 2018-03-28 16:25:57
言語 C++17(gcc12)
(gcc 12.4.0 + boost 1.89.0)
コンパイル:
g++-12 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 1,375 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,014 ms
コンパイル使用メモリ 135,052 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-03-08 19:05:06
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# include <iostream>
# include <algorithm>
# include <vector>
# include <string>
# include <set>
# include <map>
# include <cmath>
# include <iomanip>
# include <functional>
# include <utility>
# include <stack>
# include <queue>
# include <list>
# include <bitset>
# include <complex>
#include<limits.h>
#include<unordered_map>
#include<unordered_set>
#include<deque>
#include<cstdio>
using namespace std;
typedef long long int ll;
const int N = 1000000;
const ll mod = 1000000007;
const ll INF = std::numeric_limits<long long>::max();
#define rep(i,n) for(ll i=(ll)0;i<(ll)n;++i)
#define srep(i,s) rep(i,(ll)s.size())
#define vin(n,v) rep(i,n)cin>>v[i]
#define ALL(x) x.begin(),x.end()
#define pp pair<ll,ll>
#define fi first
#define se second
#define sz size()
void YN(bool b) { cout << (b ? "YES" : "NO") << endl; }
void yn(bool b) { cout << (b ? "Yes" : "No") << endl; }
ll n, b[1510], aa[1510], mn = INF;
priority_queue<pp,vector<pp>,greater<pp>>q;
int main(){
	cin >> n;
	pp p; p.se = 0;
	rep(i, n) { cin >> p.fi; aa[i] = p.fi; q.push(p); }
	rep(i, n)cin >> b[i];
	rep(st, n) {
		rep(i, n) {
			pp a = q.top(); q.pop();
			a.fi += b[(i + st) % n] / 2;
			a.se++;
			q.push(a);
		}
		priority_queue<ll>q2;
		rep(i, n) {
			pp a = q.top(); q.pop();
			q2.push(a.se);
		}
		mn = min(q2.top(),mn);
		rep(i, n) {q.push(pp{ aa[i],0 }); }
	}
	cout << mn << endl;
	return 0;
}
0