結果

問題 No.9 モンスターのレベル上げ
ユーザー C++ C++
提出日時 2024-10-21 01:25:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 726 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 208,116 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-21 01:25:19
合計ジャッジ時間 5,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 293 ms
6,816 KB
testcase_03 AC 214 ms
6,816 KB
testcase_04 AC 114 ms
6,816 KB
testcase_05 AC 74 ms
6,820 KB
testcase_06 AC 25 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 32 ms
6,816 KB
testcase_09 AC 262 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 195 ms
6,816 KB
testcase_12 AC 205 ms
6,816 KB
testcase_13 AC 167 ms
6,820 KB
testcase_14 AC 262 ms
6,816 KB
testcase_15 AC 234 ms
6,820 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 152 ms
6,820 KB
testcase_18 AC 126 ms
6,816 KB
testcase_19 AC 4 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  cin.tie(nullptr)->sync_with_stdio(false);
  using P = pair<int, int>;
  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 ret = 1e9;
  for(int i = 0; i < N; ++i){
    priority_queue<P, vector<P>, greater<P>> que;
    for(int j = 0; j < N; ++j){
      que.emplace(A[j], 0);
    }

    int res = 0;
    for(int j = 0; j < N; ++j){
      const auto [cur_health, fight_till_now] = que.top();
      que.pop();
      res = max(res, fight_till_now + 1);
      que.emplace(cur_health + B[(i + j) % N] / 2, fight_till_now + 1);
    }
    ret = min(ret, res);
  }
  cout << ret << endl;
  return 0;
}
0