結果

問題 No.1816 MUL-DIV Game
ユーザー keijakkeijak
提出日時 2022-01-21 23:01:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 7,037 ms
コンパイル使用メモリ 396,960 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-05-04 14:22:40
合計ジャッジ時間 9,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 43 ms
8,192 KB
testcase_11 AC 39 ms
7,552 KB
testcase_12 AC 29 ms
6,656 KB
testcase_13 AC 60 ms
9,984 KB
testcase_14 AC 32 ms
6,912 KB
testcase_15 AC 41 ms
8,192 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 83 ms
12,160 KB
testcase_18 AC 76 ms
11,648 KB
testcase_19 AC 36 ms
7,552 KB
testcase_20 AC 85 ms
12,544 KB
testcase_21 AC 29 ms
6,400 KB
testcase_22 AC 22 ms
5,760 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 100 ms
14,336 KB
testcase_26 AC 101 ms
14,336 KB
testcase_27 AC 99 ms
14,464 KB
testcase_28 AC 100 ms
14,336 KB
testcase_29 AC 100 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <boost/multiprecision/cpp_int.hpp>
using Int = boost::multiprecision::cpp_int;

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
          auto x1 = *prev(ms.end());
          ms.erase(prev(ms.end()));
          auto x2 = *prev(ms.end());
          ms.erase(prev(ms.end()));
          ms.insert((x2 + x1 - 1)/x1);
      } else {
          // Alice's turn
          auto xl = *ms.begin();
          ms.erase(ms.begin());
          if (xl > 1) {
            auto xr = *ms.begin();
            ms.erase(ms.begin());
            ms.insert(xl*xr);
          } else {
            auto xr = *prev(ms.end());
            ms.erase(prev(ms.end()));
            ms.insert(xl*xr);
          }
      }
  }
  assert(ms.size() == 1);
  cout << *ms.begin() << endl;
}
0