結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | togari_takamoto |
提出日時 | 2015-12-13 05:07:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 570 ms / 5,000 ms |
コード長 | 1,019 bytes |
コンパイル時間 | 978 ms |
コンパイル使用メモリ | 99,052 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 23:16:58 |
合計ジャッジ時間 | 6,517 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 570 ms
6,944 KB |
testcase_03 | AC | 451 ms
6,944 KB |
testcase_04 | AC | 238 ms
6,940 KB |
testcase_05 | AC | 157 ms
6,940 KB |
testcase_06 | AC | 54 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 73 ms
6,944 KB |
testcase_09 | AC | 555 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 495 ms
6,944 KB |
testcase_12 | AC | 371 ms
6,940 KB |
testcase_13 | AC | 269 ms
6,940 KB |
testcase_14 | AC | 552 ms
6,940 KB |
testcase_15 | AC | 507 ms
6,940 KB |
testcase_16 | AC | 10 ms
6,940 KB |
testcase_17 | AC | 325 ms
6,940 KB |
testcase_18 | AC | 273 ms
6,944 KB |
testcase_19 | AC | 6 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <array> #include <algorithm> #include <string> #include <map> #include <queue> #include <iomanip> #include <numeric> #include <memory> #include <limits.h> #include <set> #include <cassert> #include <cmath> #include <bitset> #include <functional> #include <limits> using namespace std; typedef long long ll; #define REP(i,n) for(ll i=0; i<(n); ++i) #define TEN(x) ((ll)1e##x) #define ALL(v) (v).begin(), (v).end() int main(){ ll n; cin >> n; vector<ll> a(n); vector<ll> b(n); for (auto&i : a) cin >> i; for (auto&i : b) cin >> i; using P = pair<ll, ll>; ll min_c = 1501; REP(start, n){ priority_queue<P, vector<P>, greater<P>> que; for (auto&i : a) que.push({i, 0}); REP(i, n) { ll j = (i + start) % n; P p = que.top(); que.pop(); que.push({p.first+b[j]/2, p.second+1}); } priority_queue<ll> max_c; while(!que.empty()) { max_c.push(que.top().second); que.pop(); } min_c = min(min_c, max_c.top()); } cout << min_c << endl; return 0; }