結果

問題 No.9 モンスターのレベル上げ
ユーザー ei1333333ei1333333
提出日時 2018-11-21 22:39:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 206,336 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 21:37:31
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 241 ms
5,376 KB
testcase_03 AC 197 ms
5,376 KB
testcase_04 AC 100 ms
5,376 KB
testcase_05 AC 67 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 29 ms
5,376 KB
testcase_09 AC 233 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 178 ms
5,376 KB
testcase_12 AC 142 ms
5,376 KB
testcase_13 AC 127 ms
5,376 KB
testcase_14 AC 235 ms
5,376 KB
testcase_15 AC 209 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 135 ms
5,376 KB
testcase_18 AC 115 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int INF = 1 << 30;

using pi = pair< int, int >;

int main() {
  int N, A[1500], B[1500];
  cin >> N;
  for(int i = 0; i < N; i++) {
    cin >> A[i];
  }
  for(int i = 0; i < N; i++) {
    cin >> B[i];
  }
  int ret = INF;
  for(int i = 0; i < N; i++) {
    priority_queue< pi, vector< pi >, greater<> > que;
    for(int j = 0; j < N; j++) que.emplace(A[j], 0);
    int res = 0;
    for(int j = 0; j < N; j++) {
      auto p = que.top();
      que.pop();
      res = max(res, p.second + 1);
      que.emplace(p.first + B[(i + j) % N] / 2, p.second + 1);
    }
    ret = min(ret, res);
  }
  cout << ret << endl;
}
0