結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー ooaiuooaiu
提出日時 2024-12-07 11:24:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,500 ms
コード長 1,248 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 258,464 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-12-07 11:24:20
合計ジャッジ時間 11,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 30 ms
5,248 KB
testcase_03 AC 17 ms
5,248 KB
testcase_04 AC 126 ms
5,248 KB
testcase_05 AC 71 ms
5,248 KB
testcase_06 AC 36 ms
5,248 KB
testcase_07 AC 76 ms
5,248 KB
testcase_08 AC 26 ms
5,248 KB
testcase_09 AC 130 ms
6,272 KB
testcase_10 AC 132 ms
6,272 KB
testcase_11 AC 131 ms
6,272 KB
testcase_12 AC 132 ms
6,272 KB
testcase_13 AC 131 ms
6,528 KB
testcase_14 AC 131 ms
6,404 KB
testcase_15 AC 133 ms
6,272 KB
testcase_16 AC 95 ms
6,400 KB
testcase_17 AC 94 ms
6,400 KB
testcase_18 AC 95 ms
6,400 KB
testcase_19 AC 95 ms
6,276 KB
testcase_20 AC 95 ms
6,404 KB
testcase_21 AC 94 ms
6,400 KB
testcase_22 AC 94 ms
6,272 KB
testcase_23 AC 79 ms
6,400 KB
testcase_24 AC 80 ms
6,272 KB
testcase_25 AC 79 ms
6,400 KB
testcase_26 AC 80 ms
6,416 KB
testcase_27 AC 79 ms
6,276 KB
testcase_28 AC 78 ms
6,272 KB
testcase_29 AC 79 ms
6,528 KB
testcase_30 AC 105 ms
6,400 KB
testcase_31 AC 100 ms
6,272 KB
testcase_32 AC 52 ms
6,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/lazysegtree>
int id() { return -1; }
int mapping(int f, int x) {
    if (f != id()) return f;
    return x;
}
int comp(int f, int g) {
    return (f == id() ? g : f);
}
void solve() {
    int N, A;
    cin >> N >> A;
    vector<pair<int, int>> X(N);
    for (int i = 0; i < N; i++) {
        cin >> X[i].first;
        X[i].second = i;
    }
    sort(X.begin(), X.end());
    vector<int> Y(N);
    for (int i = 0; i < N; i++) Y[i] = X[i].first;
    atcoder::lazy_segtree<int, mapping, id, int, mapping, comp, id> seg(N);
    int T;
    cin >> T;
    for (int t = 1; t <= T; t++) {
        int L, R;
        cin >> L >> R;
        int l = distance(Y.begin(), lower_bound(Y.begin(), Y.end(), L));
        int r = distance(Y.begin(), upper_bound(Y.begin(), Y.end(), R));
        seg.apply(l, r, t);
    }
    vector<int> ans(N);
    for (int i = 0; i < N; i++) ans[X[i].second] = seg.get(i);
    for (const auto& x : ans) cout << x << '\n';
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0