結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | face4 |
提出日時 | 2018-09-06 16:40:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 423 ms / 5,000 ms |
コード長 | 847 bytes |
コンパイル時間 | 712 ms |
コンパイル使用メモリ | 76,884 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-22 07:56:00 |
合計ジャッジ時間 | 5,235 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 423 ms
6,820 KB |
testcase_03 | AC | 337 ms
6,816 KB |
testcase_04 | AC | 176 ms
6,816 KB |
testcase_05 | AC | 115 ms
6,820 KB |
testcase_06 | AC | 40 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 53 ms
6,820 KB |
testcase_09 | AC | 409 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 346 ms
6,820 KB |
testcase_12 | AC | 270 ms
6,816 KB |
testcase_13 | AC | 200 ms
6,816 KB |
testcase_14 | AC | 417 ms
6,820 KB |
testcase_15 | AC | 376 ms
6,816 KB |
testcase_16 | AC | 7 ms
6,816 KB |
testcase_17 | AC | 242 ms
6,816 KB |
testcase_18 | AC | 201 ms
6,816 KB |
testcase_19 | AC | 5 ms
6,816 KB |
ソースコード
#include<iostream> #include<queue> using namespace std; int main(){ int n; cin >> n; int a[n], b[n]; for(int i = 0; i < n; i++) cin >> a[i]; for(int i = 0; i < n; i++) cin >> b[i]; int ans = 10001; for(int i = 0; i < n; i++){ priority_queue<pair<int,int>> pq; for(int j = 0; j < n; j++) pq.push(make_pair(-a[j], 0)); for(int j = 0; j < n; j++){ int encount = b[(i+j)%n]; pair<int,int> monster = pq.top(); pq.pop(); monster.first -= encount/2; monster.second--; pq.push(monster); } int tmpmax = 0; while(!pq.empty()){ pair<int,int> p = pq.top(); pq.pop(); tmpmax = max(tmpmax, -p.second); } ans = min(ans, tmpmax); } cout << ans << endl; return 0; }