結果
問題 |
No.9 モンスターのレベル上げ
|
ユーザー |
![]() |
提出日時 | 2018-06-17 15:58:11 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,085 bytes |
コンパイル時間 | 957 ms |
コンパイル使用メモリ | 83,768 KB |
最終ジャッジ日時 | 2025-01-05 14:27:34 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 14 |
ソースコード
#include <algorithm> #include <utility> #include <string> #include <iostream> #include <vector> #include <queue> int main() { int n = 0; std::cin >> n; std::priority_queue< std::pair<int, int>, std::vector< std::pair<int, int> >, std::greater<std::pair<int, int>> > my; std::vector<int> e; for( int i = 0; i < n; ++i ) { int tmp; std::cin >> tmp; my.push({tmp, 0}); } for( int i = 0; i < n; ++i ) { int tmp; std::cin >> tmp; e.push_back(tmp/2); } int max_count = 0; for(int i = 0; i < n; ++i) { auto que = my; for(int j = 0; j < n; ++j){ auto selected = que.top(); // std::cout << selected.first << ", " << selected.second << std::endl; que.pop(); selected.second++; selected.first += e[(i+j)%n]; que.push(selected); if(max_count < selected.second) max_count = selected.second; } } std::cout << max_count << std::endl; return 0; }