結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | 久我山菜々 |
提出日時 | 2018-09-30 18:25:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 395 ms / 5,000 ms |
コード長 | 937 bytes |
コンパイル時間 | 1,088 ms |
コンパイル使用メモリ | 108,312 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 09:16:23 |
合計ジャッジ時間 | 5,305 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 395 ms
5,248 KB |
testcase_03 | AC | 317 ms
5,248 KB |
testcase_04 | AC | 165 ms
5,248 KB |
testcase_05 | AC | 109 ms
5,248 KB |
testcase_06 | AC | 38 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 49 ms
5,248 KB |
testcase_09 | AC | 387 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 317 ms
5,248 KB |
testcase_12 | AC | 242 ms
5,248 KB |
testcase_13 | AC | 175 ms
5,248 KB |
testcase_14 | AC | 388 ms
5,248 KB |
testcase_15 | AC | 353 ms
5,248 KB |
testcase_16 | AC | 7 ms
5,248 KB |
testcase_17 | AC | 225 ms
5,248 KB |
testcase_18 | AC | 189 ms
5,248 KB |
testcase_19 | AC | 5 ms
5,248 KB |
ソースコード
#include<iostream> #include<vector> #include<map> #include<algorithm> #include<cmath> #include<queue> #include<numeric> static int const INF{100000000}; int main(int, char**) { int n; std::cin >> n; std::priority_queue<std::pair<int, int>, std::vector<std::pair<int, int>>, std::greater<std::pair<int, int>>> as{}; std::vector<int> bs(n); for(int i{}; i < n; ++i) { int a; std::cin >> a; as.emplace(a, 0); } for(int i{}; i < n; ++i) { std::cin >> bs[i]; } int min{10000000}; for(int i{}; i < n; ++i) { auto nas = as; for(int j{}; j < n; ++j) { int vsl = bs[(j + i) % n]; auto nt = nas.top(); nas.pop(); nt.first += vsl / 2; nt.second += 1; nas.push(nt); } int m{}; for(int i{}; i < n; ++i) { m = std::max(m, nas.top().second); nas.pop(); } min = std::min(min, m); } std::cout << min <<std::endl; return 0; }