답안 #1085404

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1085404 2024-09-08T08:09:07 Z steveonalex 3단 점프 (JOI19_jumps) C++17
32 / 100
4000 ms 38368 KB
// #include "rect.h"
#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
 
#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
#define ALL(v) (v).begin(), (v).end()
#define block_of_code if(true)
 
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
ll gcd(ll a, ll b){return __gcd(a, b);}
ll lcm(ll a, ll b){return a / gcd(a, b) * b;}
 
ll LASTBIT(ll mask){return (mask) & (-mask);}
int pop_cnt(ll mask){return __builtin_popcountll(mask);}
int ctz(ull mask){return __builtin_ctzll(mask);}
int logOf(ull mask){return 63 - __builtin_clzll(mask);}
 
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);}
double rngesus_d(double l, double r){
    double cur = rngesus(0, MASK(60) - 1);
    cur /= MASK(60) - 1;
    return l + cur * (r - l);
}
 
template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b) {a = b; return true;}
        return false;
    }
 
template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b) {a = b; return true;}
        return false;
    }
 
template <class T>
    void printArr(T container, string separator = " ", string finish = "\n", ostream &out = cout){
        for(auto item: container) out << item << separator;
        out << finish;
    }
 
template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }

const ll INF = 1e18 + 69;

struct SegmentTree{
    ll n;
    vector<pair<ll, ll>> a;

    SegmentTree(ll _n){
        n = _n;
        a.resize(n * 2 + 2, {-INF, 0});
    }

    void update(ll i, pair<ll, ll> v){
        i += n; a[i] = v;
        while(i > 1){
            i >>= 1;
            a[i] = max(a[i * 2], a[i * 2 + 1]);
        }
    }

    pair<ll, ll> get(ll l, ll r){
        l += n; r += n + 1;
        pair<ll, ll> ans = {-INF, 0};
        while(l < r){
            if (l & 1) maximize(ans, a[l++]);
            if (r & 1) maximize(ans, a[--r]);
            l >>= 1; r >>= 1;
        }
        return ans;
    }
};

const ll NECESSARY = 20;
const ll N = 2e5 + 69, LOG_N = 18;
ll rmq[LOG_N][N];

ll get(ll l, ll r){
    if (l > r) return -INF;
    ll j = logOf(r - l + 1);
    return max(rmq[j][l], rmq[j][r - MASK(j) + 1]);
}

int main(void){
    ios::sync_with_stdio(0);cin.tie(0); cout.tie(0);
    clock_t start = clock();

    ll n; cin >> n;
    vector<ll> a(n+1);
    for(ll i = 1; i<=n; ++i) cin >> a[i];

    for(ll i = 1; i<=n; ++i) rmq[0][i] = a[i];
    for(ll j = 1; MASK(j) <= n; ++j)
    for(ll i = 1; i<=n-MASK(j)+1; ++i)
        rmq[j][i] = max(rmq[j-1][i], rmq[j-1][i + MASK(j-1)]);

    SegmentTree st(n);
    for(ll i = 1; i<=n; ++i){
        st.update(i, {a[i], i});
    }

    ll q; cin >> q;

    for(int queries = 1; queries <= q; ++queries){
        ll l, r; cin >> l >> r;

        vector<pair<int, int>> sigma;
        for(int i = l; i <= r; ++i) sigma.push_back({a[i], i});
        sort(ALL(sigma));

        vector<int> pos;
        while(pos.size() < NECESSARY && sigma.size()){
            pos.push_back(sigma.back().second);
            sigma.pop_back();
        }


        ll ans = 0;
        for(int i: pos){
            for(int j = i - 1; j >= l; --j){
                int k = i + (i - j);
                if (k > r) break;
                maximize(ans, a[i] + a[j] + get(k, r));
            }
            for(int j = i + 1; j + (j - i) <= r; ++j){
                int k = j + (j - i);
                maximize(ans, a[i] + a[j] + get(k, r));
            }
            for(int j = i - 1; j > l; --j){
                int k = max(l, j - (i - j));
                maximize(ans, a[i] + a[j] + get(k, j-1));
            }
        }
        cout << ans << "\n";


        // for(ll i: pos){
        //     st.update(i, {a[i], i});
        // }
    }



    cerr << "Time elapsed: " << clock() - start << " ms\n";
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 1 ms 348 KB Output is correct
5 Correct 1 ms 348 KB Output is correct
6 Correct 1 ms 348 KB Output is correct
7 Correct 1 ms 348 KB Output is correct
8 Correct 1 ms 348 KB Output is correct
9 Correct 1 ms 348 KB Output is correct
10 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 1 ms 348 KB Output is correct
5 Correct 1 ms 348 KB Output is correct
6 Correct 1 ms 348 KB Output is correct
7 Correct 1 ms 348 KB Output is correct
8 Correct 1 ms 348 KB Output is correct
9 Correct 1 ms 348 KB Output is correct
10 Correct 1 ms 348 KB Output is correct
11 Execution timed out 4011 ms 1928 KB Time limit exceeded
12 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 64 ms 38352 KB Output is correct
2 Correct 65 ms 38348 KB Output is correct
3 Correct 47 ms 38352 KB Output is correct
4 Correct 66 ms 38352 KB Output is correct
5 Correct 74 ms 38368 KB Output is correct
6 Correct 63 ms 37628 KB Output is correct
7 Correct 64 ms 37512 KB Output is correct
8 Correct 64 ms 37580 KB Output is correct
9 Correct 65 ms 37844 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 1 ms 348 KB Output is correct
5 Correct 1 ms 348 KB Output is correct
6 Correct 1 ms 348 KB Output is correct
7 Correct 1 ms 348 KB Output is correct
8 Correct 1 ms 348 KB Output is correct
9 Correct 1 ms 348 KB Output is correct
10 Correct 1 ms 348 KB Output is correct
11 Execution timed out 4011 ms 1928 KB Time limit exceeded
12 Halted 0 ms 0 KB -