結果

問題 No.318 学学学学学
ユーザー ooaiuooaiu
提出日時 2024-09-09 11:50:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 259,880 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-09-09 11:50:21
合計ジャッジ時間 8,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 19 ms
6,940 KB
testcase_02 AC 23 ms
6,944 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 150 ms
18,048 KB
testcase_06 AC 106 ms
12,544 KB
testcase_07 AC 85 ms
10,752 KB
testcase_08 AC 71 ms
10,112 KB
testcase_09 AC 57 ms
8,960 KB
testcase_10 AC 40 ms
7,808 KB
testcase_11 AC 145 ms
17,920 KB
testcase_12 AC 89 ms
12,544 KB
testcase_13 AC 71 ms
10,752 KB
testcase_14 AC 57 ms
9,600 KB
testcase_15 AC 47 ms
8,704 KB
testcase_16 AC 33 ms
7,552 KB
testcase_17 AC 66 ms
12,544 KB
testcase_18 AC 60 ms
12,416 KB
testcase_19 AC 67 ms
12,544 KB
testcase_20 AC 30 ms
7,808 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define cout std::cout
#define cin std::cin
#define endl '\n'

using ll = long long;
const ll inf = 1000000000000000000LL;
#include <atcoder/lazysegtree>
ll op(ll a, ll b) {
    return 0 ^ a ^ a ^ b ^ b;
}
ll e() {
    return 0;
}
ll mp(ll f, ll x) {
    if(f == inf) return x;
    return f;
}
ll cmp(ll f, ll g) {
    if(f == inf) return g;
    return f;
}
ll id() {
    return inf;
}
int main() {
    std::ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    std::vector<ll> A(n);
    for(int i = 0; i < n; i++) cin >> A[i];
    std::map<int, std::vector<int>> C;
    for(int i = 0; i < n; i++) C[A[i]].push_back(i);
    atcoder::lazy_segtree<ll, op, e, ll, mp, cmp, id> seg(A);
    for(auto it = C.begin(); it != C.end(); it++) {
        std::vector<int> v = it->second;
        int fi = v.front(), la = v.back();
        seg.apply(fi, la + 1, it->first);
    }
    for(int i = 0; i < n; i++) cout << seg.get(i) << " ";
    cout << endl;
}
0