結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー 寝癖寝癖
提出日時 2024-02-23 22:20:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 825 ms / 2,500 ms
コード長 1,900 bytes
コンパイル時間 5,742 ms
コンパイル使用メモリ 320,748 KB
実行使用メモリ 39,992 KB
最終ジャッジ日時 2024-09-29 07:11:47
合計ジャッジ時間 26,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 182 ms
12,288 KB
testcase_03 AC 63 ms
8,192 KB
testcase_04 AC 464 ms
28,800 KB
testcase_05 AC 356 ms
23,296 KB
testcase_06 AC 161 ms
13,312 KB
testcase_07 AC 379 ms
24,960 KB
testcase_08 AC 115 ms
10,240 KB
testcase_09 AC 755 ms
39,748 KB
testcase_10 AC 756 ms
39,848 KB
testcase_11 AC 748 ms
39,952 KB
testcase_12 AC 790 ms
39,868 KB
testcase_13 AC 825 ms
39,956 KB
testcase_14 AC 776 ms
39,936 KB
testcase_15 AC 769 ms
39,832 KB
testcase_16 AC 767 ms
39,780 KB
testcase_17 AC 742 ms
39,820 KB
testcase_18 AC 785 ms
39,792 KB
testcase_19 AC 774 ms
39,900 KB
testcase_20 AC 723 ms
39,876 KB
testcase_21 AC 736 ms
39,932 KB
testcase_22 AC 751 ms
39,848 KB
testcase_23 AC 593 ms
39,840 KB
testcase_24 AC 592 ms
39,948 KB
testcase_25 AC 596 ms
39,784 KB
testcase_26 AC 588 ms
39,784 KB
testcase_27 AC 583 ms
39,948 KB
testcase_28 AC 579 ms
39,908 KB
testcase_29 AC 587 ms
39,768 KB
testcase_30 AC 698 ms
39,752 KB
testcase_31 AC 590 ms
39,992 KB
testcase_32 AC 335 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<ld> vld;
typedef vector<vi> vvi;
typedef vector<vll> vvll;

template <class T> using Vec = vector<T>;
template <class T> using Graph = Vec<Vec<T>>;

#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define _rrep(i,n) rrepi(i,n-1,-1)
#define rrepi(i,a,b) for(int i=int(a);i>int(b);--i)
#define rrep(...) _overload3(__VA_ARGS__,rrepi,_rrep)(__VA_ARGS__)

#define all(x) (x).begin(),(x).end()
#define SORT(x) sort(all(x))
#define REVERSE(x) reverse(all(x))
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

int op(int a, int b) {
    return max(a, b);
}

int e() {
    return -1;
}

int mapping(int f, int x) {
    return max(f, x);
}

int composition(int f, int g) {
    return max(f, g);
}

int id() {
    return -1;
}

int main() {
    int N, A;
    cin >> N >> A;

    vi X(N);
    rep(i, N) cin >> X[i];

    int T;
    cin >> T;

    vi L(T), R(T);
    rep(i, T) cin >> L[i] >> R[i];

    set<int> S;
    for (auto x: X) S.insert(x);
    for (auto l: L) S.insert(l);
    for (auto r: R) S.insert(r);

    map<int, int> mp;
    int idx = 0;
    for (auto x: S) mp[x] = idx++;

    rep(i, N) X[i] = mp[X[i]];
    rep(i, T) L[i] = mp[L[i]];
    rep(i, T) R[i] = mp[R[i]];

    int M = S.size() + 1;
    lazy_segtree<int, op, e, int, mapping, composition, id> seg(M);

    rep(t, T) seg.apply(L[t], R[t]+1, t+1);
    for (auto x: X) cout << seg.get(x) << endl;
}
0