結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | hogeover30 |
提出日時 | 2015-02-12 20:48:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 227 ms / 5,000 ms |
コード長 | 785 bytes |
コンパイル時間 | 667 ms |
コンパイル使用メモリ | 70,620 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 22:28:31 |
合計ジャッジ時間 | 3,341 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 227 ms
6,940 KB |
testcase_03 | AC | 181 ms
6,944 KB |
testcase_04 | AC | 97 ms
6,940 KB |
testcase_05 | AC | 63 ms
6,944 KB |
testcase_06 | AC | 23 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 30 ms
6,940 KB |
testcase_09 | AC | 224 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 142 ms
6,944 KB |
testcase_12 | AC | 116 ms
6,940 KB |
testcase_13 | AC | 134 ms
6,940 KB |
testcase_14 | AC | 221 ms
6,944 KB |
testcase_15 | AC | 204 ms
6,940 KB |
testcase_16 | AC | 5 ms
6,944 KB |
testcase_17 | AC | 128 ms
6,940 KB |
testcase_18 | AC | 108 ms
6,944 KB |
testcase_19 | AC | 4 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <queue> using namespace std; int main() { int n; while (cin>>n) { vector<int> b(n); priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> a; for(int i=0;i<n;++i) { int t; cin>>t; a.emplace(t, 0); } for(int& v: b) cin>>v; int res=1000000; for(int k=0;k<n;++k) { auto s=a; int cnt=0; for(int i=0;i<n;++i) { auto x=s.top(); s.pop(); x.first+=b[(i+k)%n]/2; x.second++; cnt=max(cnt, x.second); s.push(x); } res=min(res, cnt); } cout<<res<<endl; } }