結果

問題 No.9 モンスターのレベル上げ
ユーザー なおなお
提出日時 2014-12-17 03:13:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 483 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 165,968 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 22:06:37
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 483 ms
6,944 KB
testcase_03 AC 383 ms
6,944 KB
testcase_04 AC 202 ms
6,940 KB
testcase_05 AC 131 ms
6,944 KB
testcase_06 AC 44 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 60 ms
6,944 KB
testcase_09 AC 464 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 394 ms
6,940 KB
testcase_12 AC 282 ms
6,940 KB
testcase_13 AC 228 ms
6,940 KB
testcase_14 AC 464 ms
6,944 KB
testcase_15 AC 427 ms
6,944 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 270 ms
6,944 KB
testcase_18 AC 229 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n)for(int i=0;i<n;++i)
using namespace std;int N,A[1501],B[1501],v=1e9;int main(){priority_queue<pair<int,int>>p;cin>>N;REP(i,N){cin>>A[i];p.push(make_pair(-A[i],0));}REP(i,N)cin>>B[i];REP(i,N){auto q=p;REP(j,N)q.push(make_pair(q.top().first-B[(i+j)%N]/2,q.top().second-1)),q.pop();int w=0;while(q.size())w=max(w,-q.top().second),q.pop();v=min(v,w);}cout<<v;}
0