結果

問題 No.9 モンスターのレベル上げ
ユーザー ei1333ei1333
提出日時 2014-11-05 18:15:33
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,587 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 166,860 KB
実行使用メモリ 37,604 KB
最終ジャッジ日時 2024-06-09 19:08:45
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 343 ms
36,444 KB
testcase_03 AC 280 ms
19,924 KB
testcase_04 AC 140 ms
11,972 KB
testcase_05 AC 95 ms
12,052 KB
testcase_06 AC 33 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 45 ms
8,280 KB
testcase_09 AC 324 ms
37,224 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 279 ms
36,724 KB
testcase_12 AC 231 ms
37,272 KB
testcase_13 AC 245 ms
36,232 KB
testcase_14 AC 329 ms
37,604 KB
testcase_15 AC 289 ms
21,532 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
 
template<typename T1, typename T2> istream& operator>>(istream& is, pair<T1,T2>& a){ return is >> a.first >> a.second; }
template<typename T1, typename T2> ostream& operator<<(ostream& os, pair<T1,T2>& a){ return os << a.first << " "<<a.second; }
template<typename T> istream& operator>>(istream& is, vector< T >& vc){ for(int i = 0; i < vc.size(); i++) is >> vc[i]; return is; }
template<typename T> ostream& operator<<(ostream& os, vector< T >& vc){ for(int i = 0; i < vc.size(); i++) os << vc[i] << endl; return os; }
 
#define ForEach(it,c) for(__typeof (c).begin() it = (c).begin(); it != (c).end(); it++)
#define ALL(v) (v).begin(), (v).end()
#define UNQ(s) { sort(ALL(s)); (s).erase( unique( ALL(s)), (s).end());}
#define fr first
#define sc second
 
typedef pair< int , int > Pi;
typedef pair< int , Pi > Pii;
 
typedef long long int64;
const int INF = 1 << 30;

int main(){
  int N;
  cin >> N;
  vector< int > A(N), B(N);
  cin >> A;
  cin >> B;

  int ret = INF;

  priority_queue< Pi, vector< Pi >, greater< Pi > > que;
  for(int i = 0; i < N; i++){ /* 最初に戦うモンスター */
    for(int j = 0; j < N; j++) que.push( Pi( A[j], 0));

    int res = 0;
    for(int j = 0; j < N; j++){
      int pos = (i + j) % N;

      Pi p = que.top(); que.pop(); /* 一番低いモンスター */
      int next_Cost = p.first + B[pos] / 2;
      res = max( res, p.second + 1); 
      que.push( Pi( next_Cost, p.second + 1));
    }
    ret = min( ret, res);
  }
  cout << ret << endl;
}
0