結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | fantasiabaetica |
提出日時 | 2018-08-02 21:10:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,341 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 64,624 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-19 17:12:58 |
合計ジャッジ時間 | 50,513 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <iostream> #define FOR(i,a,b) for(int i=(a); i<(b); i++) #define max_int 2147483647; using namespace std; int N; // a[i]は自分のレベル*2000+戦闘回数 b[i]は相手のレベル // t[i]はループのたびa[i]をコピー int a[1500], b[1500], t[1500]; // 次に先頭に出すモンスターを選ぶ int which_next_battle(){ int min = max_int; int next_battle = 0; FOR(i, 0, N){ if (t[i] < min){ min = t[i]; next_battle = i; } } cout << next_battle << endl; return next_battle; } int max_battle_from_i(int i){ int max_battle_count = 0; FOR(j, 0, N){ int next_battle = which_next_battle(); int enemy = b[(j + i) % N]; t[next_battle] += (enemy / 2) * 2000 + 1; max_battle_count = max(max_battle_count, t[next_battle] % 2000); } return max_battle_count; } int main() { cin >> N; FOR(i, 0, N){ int tmp; cin >> tmp; a[i] = tmp * 2000; } FOR(i, 0, N){ cin >> b[i]; } int min_max_battle = max_int; // i番目から戦闘開始 FOR(i, 0, N){ FOR(i, 0, N){ t[i] = a[i]; } int max_battle = max_battle_from_i(i); min_max_battle = min(min_max_battle, max_battle); } cout << min_max_battle << endl; }