結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | NotationNap |
提出日時 | 2015-04-22 04:22:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 1,299 ms |
コンパイル使用メモリ | 164,204 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 00:04:17 |
合計ジャッジ時間 | 5,847 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 419 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 173 ms
5,376 KB |
testcase_05 | AC | 115 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 410 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 348 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 196 ms
5,376 KB |
testcase_14 | AC | 403 ms
5,376 KB |
testcase_15 | AC | 377 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 237 ms
5,376 KB |
testcase_18 | AC | 196 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long Int; #define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i)) int A[1500]; int B[1500]; int main() { int N; cin >> N; REP(i, N) cin >> A[i]; REP(i, N) cin >> B[i]; int ans = 999999999; REP(i, N) { priority_queue<pair<int, int>> pq; REP(j, N) { if (i == j) { pq.push(make_pair(-(A[j] + B[0]/2), -1)); } else { pq.push(make_pair(-A[j], 0)); } } for (int j = 1; j < N; j++) { pair<int,int> top = pq.top(); pq.pop(); top.first -= B[j] / 2; top.second--; pq.push(top); } int maxButtle = 0; while (!pq.empty()) { int buttle = -pq.top().second; pq.pop(); maxButtle = max(maxButtle, buttle); } ans = min(ans, maxButtle); } cout << ans << endl; }