結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | Tatamo |
提出日時 | 2016-12-13 17:42:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 218 ms / 5,000 ms |
コード長 | 1,427 bytes |
コンパイル時間 | 682 ms |
コンパイル使用メモリ | 69,892 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 23:46:55 |
合計ジャッジ時間 | 3,161 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 218 ms
6,940 KB |
testcase_03 | AC | 173 ms
6,944 KB |
testcase_04 | AC | 92 ms
6,944 KB |
testcase_05 | AC | 61 ms
6,944 KB |
testcase_06 | AC | 22 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 28 ms
6,940 KB |
testcase_09 | AC | 212 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 137 ms
6,944 KB |
testcase_12 | AC | 117 ms
6,944 KB |
testcase_13 | AC | 133 ms
6,944 KB |
testcase_14 | AC | 213 ms
6,940 KB |
testcase_15 | AC | 192 ms
6,940 KB |
testcase_16 | AC | 5 ms
6,944 KB |
testcase_17 | AC | 121 ms
6,944 KB |
testcase_18 | AC | 101 ms
6,944 KB |
testcase_19 | AC | 4 ms
6,944 KB |
ソースコード
#include<iostream> #include<utility> #include<vector> #include<queue> using namespace std; #define cerr cerr << "[DBG] " #define DBG(x) cerr << #x << ": " << x << endl // http://genkisugimoto.com/jp/blog/procon/2015/04/15/print-debug-technique-in-cpp.html template<typename T1, typename T2> ostream& operator<<(ostream& s, const pair<T1, T2>& p) {return s << "(" << p.first << ", " << p.second << ")";} template<typename T> ostream& operator<<(ostream& s, const vector<T>& v) { for (int i = 0; i < (int)v.size(); ++i) { s << v[i]; if (i < (int)v.size() - 1) s << "\t"; } return s; } typedef long long ll; typedef pair<int, int> ip; typedef priority_queue<ip, vector<ip>, greater<ip>> pq_ip; int main(){ int n; cin >> n; pq_ip pq; for(int i=0; i<n; i++){ int tmp; cin >> tmp; pq.push(make_pair(tmp, 0)); } vector<int> enemy = vector<int>(n); for(int i=0; i<n; i++){ cin >> enemy[i]; } pq_ip copy_pq = pq; int result_min = n+1; for(int d=0; d<n; d++){ int max_battle = 0; pq = copy_pq; for(int i=0; i<n; i++){ int index = (i+d)%n; ip mons = pq.top(); pq.pop(); //cerr << "battle " << mons.first << "lv, count:" << mons.second << endl; mons.first += enemy[index]/2; mons.second++; pq.push(mons); if(mons.second>max_battle){ max_battle = mons.second; } } if(max_battle < result_min){ result_min = max_battle; } } cout << result_min << endl; return 0; }