結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | kotatsugame |
提出日時 | 2019-10-14 02:30:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 438 ms / 5,000 ms |
コード長 | 557 bytes |
コンパイル時間 | 754 ms |
コンパイル使用メモリ | 77,020 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 05:23:50 |
合計ジャッジ時間 | 5,329 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 438 ms
6,940 KB |
testcase_03 | AC | 352 ms
6,944 KB |
testcase_04 | AC | 183 ms
6,944 KB |
testcase_05 | AC | 121 ms
6,940 KB |
testcase_06 | AC | 41 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 55 ms
6,944 KB |
testcase_09 | AC | 428 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 354 ms
6,944 KB |
testcase_12 | AC | 281 ms
6,944 KB |
testcase_13 | AC | 206 ms
6,944 KB |
testcase_14 | AC | 431 ms
6,944 KB |
testcase_15 | AC | 388 ms
6,944 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | AC | 250 ms
6,940 KB |
testcase_18 | AC | 208 ms
6,940 KB |
testcase_19 | AC | 5 ms
6,944 KB |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main() | ^~~~
ソースコード
#include<iostream> #include<queue> using namespace std; int N; int A[1500],B[1500]; main() { cin>>N; for(int i=0;i<N;i++)cin>>A[i]; for(int i=0;i<N;i++)cin>>B[i]; int ans=1e9; for(int i=0;i<N;i++) { priority_queue<pair<int,int> >P; for(int j=0;j<N;j++)P.push(make_pair(-A[j],0)); for(int j=0;j<N;j++) { pair<int,int>p=P.top();P.pop(); p.first-=B[(i+j)%N]/2; p.second-=1; P.push(p); } int now=0; while(!P.empty()) { if(now<-P.top().second)now=-P.top().second; P.pop(); } if(ans>now)ans=now; } cout<<ans<<endl; }