結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 473 ms
6,944 KB
testcase_03 AC 376 ms
6,940 KB
testcase_04 AC 197 ms
6,940 KB
testcase_05 AC 129 ms
6,944 KB
testcase_06 AC 44 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 58 ms
6,944 KB
testcase_09 AC 457 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 385 ms
6,940 KB
testcase_12 AC 279 ms
6,944 KB
testcase_13 AC 224 ms
6,940 KB
testcase_14 AC 458 ms
6,944 KB
testcase_15 AC 418 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 265 ms
6,940 KB
testcase_18 AC 226 ms
6,944 KB
testcase_19 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define R(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;R(i,N){cin>>A[i];p.push(make_pair(-A[i],0));}R(i,N)cin>>B[i];R(i,N){auto q=p;R(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