結果

問題 No.9 モンスターのレベル上げ
ユーザー monnumonnu
提出日時 2020-07-06 00:39:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 442 ms / 5,000 ms
コード長 839 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 173,736 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 07:02:11
合計ジャッジ時間 6,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 442 ms
6,944 KB
testcase_03 AC 354 ms
6,944 KB
testcase_04 AC 186 ms
6,940 KB
testcase_05 AC 122 ms
6,944 KB
testcase_06 AC 41 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 55 ms
6,944 KB
testcase_09 AC 430 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 367 ms
6,944 KB
testcase_12 AC 297 ms
6,940 KB
testcase_13 AC 200 ms
6,940 KB
testcase_14 AC 431 ms
6,944 KB
testcase_15 AC 392 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 251 ms
6,940 KB
testcase_18 AC 211 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using Graph=vector<vector<int>>;
#define MOD 1000000007
#define INF 1000000000

int main(){
  int N;
  cin>>N;
  vector<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 ans=INF;
  for(int i=0;i<N;i++){
    priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
    for(int j=0;j<N;j++){
      pair<int,int> p=make_pair(A[j],0);
      pq.push(p);
    }
    for(int j=0;j<N;j++){
      pair<int,int> p=pq.top();
      pq.pop();
      int k=(i+j)%N;
      p.first+=B[k]/2;
      p.second+=1;
      pq.push(p);
    }
    int count=0;
    while(!pq.empty()){
      pair<int,int> p=pq.top();
      pq.pop();
      count=max(count,p.second);
    }
    ans=min(count,ans);
  }
  cout<<ans<<endl;
}
0