結果

問題 No.1816 MUL-DIV Game
ユーザー keijakkeijak
提出日時 2022-01-21 22:54:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 207,204 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-05-04 14:10:39
合計ジャッジ時間 4,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 35 ms
5,608 KB
testcase_11 AC 31 ms
5,504 KB
testcase_12 AC 24 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 90 ms
8,320 KB
testcase_27 WA -
testcase_28 AC 89 ms
8,320 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n; cin>>n;
  vector<int> a(n);
  for (auto& x : a) cin>>x;
  multiset<int> ms(a.begin(), a.end());
  for (int i = 0; i < n-1; ++i) {
      assert(ms.size() >= 2);
      if (i & 1) {
          // Bob's turn
          int x1 = *prev(ms.end());
          ms.erase(prev(ms.end()));
          int x2 = *prev(ms.end());
          ms.erase(prev(ms.end()));
          ms.insert((x2 + x1 - 1)/x1);
      } else {
          // Alice's turn
          int xl = *ms.begin();
          int xr = *prev(ms.end());
          ms.erase(ms.begin());
          ms.erase(prev(ms.end()));
          ms.insert(xl*xr);
      }
  }
  assert(ms.size() == 1);
  cout << *ms.begin() << endl;
}
0