Submission #1020544

# Submission time Handle Problem Language Result Execution time Memory
1020544 2024-07-12T06:50:52 Z vjudge1 Deda (COCI17_deda) C++11
80 / 140
78 ms 12124 KB
#include <bits/stdc++.h>
using namespace std;
#define cl(x) (x << 1)
#define cr(x) (x << 1) + 1
long long seg[4 * 100005];
long long test[4 * 100005];
long long search;
void pull(int index)
{
    if (seg[cl(index)] <= seg[cr(index)])
    {
        test[index] = test[cl(index)];
    }
    else
    {
        test[index] = test[cr(index)];
    }
    seg[index] = min(seg[cl(index)], seg[cr(index)]);
}
void build(int index, int l, int r)
{
    if (l == r)
    {
        seg[index] = LONG_LONG_MAX;
        test[index] = l;
        return;
    }
    int mid = (l + r) / 2;
    build(cl(index), l, mid);
    build(cr(index), mid + 1, r);
    pull(index);
}
void update(int index, int l, int r, long long v, int x)
{
    if (l == r)
    {
        seg[index] = min(seg[index], v);
        return;
    }
    int mid = (l + r) / 2;
    if (mid >= x)
    {
        update(cl(index), l, mid, v, x);
    }
    if (mid < x)
    {
        update(cr(index), mid + 1, r, v, x);
    }
    pull(index);
}
long long query(int index, int l, int r, int sl, int sr, long long target)
{
    if (sl > r || sr < l)
    {
        return -1;
    }
    // cout << " sl " << sl << " sr " << sr << " " << seg[index] << "\n";
    if (l <= sl && sr <= r)
    { //
        if (seg[index] > target)
        {
            return -1;
        }
        else
        {
            if (sl == sr)
            {
                if (seg[index] <= target)
                {
                    // cout<<" yes "<<sl<<" "<<seg[index]<<"\n";
                    return sl;
                }
                else
                {
                    return -1;
                }
            }
        }
    }
    long long ans = LONG_LONG_MAX;
    int mid = (sl + sr) / 2;
    long long temp = query(cl(index), l, r, sl, mid, target);
    if (l <= mid && temp != -1)
    {
        ans = min(ans, temp);
        return ans;
    }
    temp = query(cr(index), l, r, mid + 1, sr, target);
    if (r > mid && temp != -1)
    {
        ans = min(ans, temp);
    }
    if (ans == LONG_LONG_MAX)
    {
        return -1;
    }
    return ans;
}
void new_query(int index, int l, int r)
{
    if (l == r)
    {
        cout << seg[index] << " ";
        return;
    }
    int mid = (l + r) / 2;
    new_query(cl(index), l, mid);
    new_query(cr(index), mid + 1, r);
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    int n, q;
    cin >> n >> q;
    build(1, 1, n);
    for (int i = 0; i < q; i++)
    {
        char way;
        int a, b;
        cin >> way >> a >> b;
        if (way == 'M')
        {
            update(1, 1, n, a, b);
            // new_query(1, 1, n);
            // cout << "\n";
        }
        else
        { // greater or equal to a    less than or equal to y
            long long temp = query(1, b, n, 1, n, a);
            cout << temp << "\n";
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Correct 1 ms 2480 KB Output is correct
3 Correct 2 ms 2396 KB Output is correct
4 Runtime error 6 ms 12024 KB Execution killed with signal 11
5 Correct 78 ms 9496 KB Output is correct
6 Runtime error 6 ms 12124 KB Execution killed with signal 11
7 Runtime error 6 ms 12124 KB Execution killed with signal 11