結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | pocarist |
提出日時 | 2015-09-15 12:55:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 174 ms / 5,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 727 ms |
コンパイル使用メモリ | 79,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 23:05:14 |
合計ジャッジ時間 | 2,927 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 174 ms
5,376 KB |
testcase_03 | AC | 86 ms
5,376 KB |
testcase_04 | AC | 74 ms
5,376 KB |
testcase_05 | AC | 49 ms
5,376 KB |
testcase_06 | AC | 17 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 21 ms
5,376 KB |
testcase_09 | AC | 152 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 143 ms
5,376 KB |
testcase_12 | AC | 115 ms
5,376 KB |
testcase_13 | AC | 117 ms
5,376 KB |
testcase_14 | AC | 160 ms
5,376 KB |
testcase_15 | AC | 162 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 106 ms
5,376 KB |
testcase_18 | AC | 87 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
ソースコード
#include <iostream> #include <queue> #include <vector> #include <tuple> #include <algorithm> #include <functional> #include <set> #include <limits> using namespace std; int main() { int N; cin >> N; vector<int> A(N), B(N); for (int i = 0; i < N; i++) { cin >> A[i]; } for (int i = 0; i < N; i++) { int b; cin >> b; B[i] = b / 2; } typedef priority_queue<pair<int, int>, vector<pair<int, int>>, std::greater<pair<int, int>>> t; t orig; for (auto i : A) { orig.push(make_pair(i, 0)); } int ans = numeric_limits<int>::max()/2; for (int i = 0; i < N; i++) { t q = orig; int tmp = 0; for (int j = 0; j < N; j++) { if (ans < tmp) break; int k = (i + j) % N; int a, n; tie(a, n) = q.top(); q.pop(); int b = B[k]; q.push(make_pair(a + b, n + 1)); tmp = max(tmp, n + 1); } ans = min(ans, tmp); } cout << ans << endl; return 0; }