結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | opqopq_ |
提出日時 | 2015-05-11 20:44:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 311 ms / 5,000 ms |
コード長 | 886 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 43,648 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 22:36:56 |
合計ジャッジ時間 | 3,877 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 311 ms
6,944 KB |
testcase_03 | AC | 247 ms
6,940 KB |
testcase_04 | AC | 126 ms
6,940 KB |
testcase_05 | AC | 84 ms
6,944 KB |
testcase_06 | AC | 28 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 37 ms
6,944 KB |
testcase_09 | AC | 297 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 252 ms
6,940 KB |
testcase_12 | AC | 253 ms
6,940 KB |
testcase_13 | AC | 191 ms
6,944 KB |
testcase_14 | AC | 298 ms
6,940 KB |
testcase_15 | AC | 268 ms
6,940 KB |
testcase_16 | AC | 5 ms
6,940 KB |
testcase_17 | AC | 171 ms
6,944 KB |
testcase_18 | AC | 140 ms
6,944 KB |
testcase_19 | AC | 4 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:21:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | for (int i = 0; i < N; i++) scanf("%d", A + i); | ~~~~~^~~~~~~~~~~~~ main.cpp:22:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | for (int i = 0; i < N; i++) scanf("%d", B + i); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <queue> using namespace std; #define N_MAX 1500 struct State { int level, turn; State(int l) : level(l), turn(0) {} bool operator < (const State& r) const { if (level != r.level) return level > r.level; return turn > r.turn; } }; int N; int A[N_MAX], B[N_MAX]; int main() { scanf("%d", &N); for (int i = 0; i < N; i++) scanf("%d", A + i); for (int i = 0; i < N; i++) scanf("%d", B + i); int res = N_MAX + 1; priority_queue<State> pq; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) pq.emplace(A[j]); int j = i, cnt = 0; while (cnt != N) { State s = pq.top(); pq.pop(); s.level += B[j] / 2; s.turn++; pq.push(s); j = (j + 1) % N; cnt++; } int maxi = 0; while (!pq.empty()) { maxi = max(maxi, pq.top().turn); pq.pop(); } res = min(res, maxi); } printf("%d\n", res); return 0; }