結果

問題 No.1786 Maximum Suffix Median (Online)
ユーザー KudeKude
提出日時 2021-12-15 16:23:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 203,440 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-23 19:57:20
合計ジャッジ時間 7,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 118 ms
11,776 KB
testcase_09 AC 78 ms
9,216 KB
testcase_10 AC 88 ms
9,728 KB
testcase_11 AC 68 ms
8,576 KB
testcase_12 AC 136 ms
12,288 KB
testcase_13 AC 118 ms
11,776 KB
testcase_14 AC 88 ms
9,728 KB
testcase_15 AC 105 ms
10,496 KB
testcase_16 AC 104 ms
10,752 KB
testcase_17 AC 87 ms
9,600 KB
testcase_18 AC 150 ms
12,928 KB
testcase_19 AC 148 ms
12,800 KB
testcase_20 AC 147 ms
12,800 KB
testcase_21 AC 146 ms
12,928 KB
testcase_22 AC 150 ms
12,928 KB
testcase_23 AC 102 ms
10,624 KB
testcase_24 AC 70 ms
8,704 KB
testcase_25 AC 119 ms
11,904 KB
testcase_26 AC 93 ms
10,880 KB
testcase_27 AC 84 ms
10,112 KB
testcase_28 AC 102 ms
11,392 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 116 ms
12,800 KB
testcase_32 AC 130 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  multiset<int, greater<>> st;
  int n;
  cin >> n;
  int ans = 0;
  for(int i = 0; i < n; i++) {
    int a;
    cin >> a;
    a ^= ans;
    st.insert(a);
    st.insert(a);
    st.erase(st.begin());
    ans = *st.begin();
    cout << ans << '\n';
  }
}
0