답안 #557281

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
557281 2022-05-05T05:21:01 Z pokmui9909 Nekameleoni (COCI15_nekameleoni) C++17
42 / 140
3000 ms 174268 KB
#include <bits/stdc++.h>
#include <ctime>
using namespace std;
using ll = long long;
 
int N, K, Q;
const int INF = 1e9;
struct Node{
    int ans;
    int L[55] = {}, R[55] = {};
    Node(){}
    Node(int _ans){ans = _ans; for(ll i = 0; i < 55; i++) L[i] = INF, R[i] = -INF;}
};
Node f(Node &p, Node &q){
    clock_t t1 = clock();
    Node ret(min(p.ans, q.ans));
    for(int i = 1; i <= K; i++){
        ret.L[i] = min(p.L[i], q.L[i]);
        ret.R[i] = max(p.R[i], q.R[i]);
    }
    vector<pair<int, int>> V;
    for(int i = 1; i <= K; i++){
        V.push_back({p.R[i], i});
    }   
    sort(V.begin(), V.end());
    int r = -1;
    for(int i = 0; i + 1 < K; i++){
        if(q.L[V[i].second] == -INF) break;
        r = max(r, q.L[V[i].second]);
        ret.ans = min(ret.ans, r - V[i + 1].first + 1);
    }
    clock_t t2 = clock();
    assert((double)(t2 - t1) / CLOCKS_PER_SEC <= 0.001);
    return ret;
}
Node T[400005];
void update(int n, int s, int e, int k, int v){
    if(s == e){
        T[n] = Node(K == 1 ? 1 : INF);
        T[n].L[v] = T[n].R[v] = k;  
        return;
    }
    int m = (s + e) / 2;
    if(k <= m) update(n * 2, s, m, k, v);
    else update(n * 2 + 1, m + 1, e, k, v);
    T[n] = f(T[n * 2], T[n * 2 + 1]);
}
 
int main(){
    cin.tie(0) -> sync_with_stdio(false);
 
    fill(T, T + 400005, Node(INF));
    cin >> N >> K >> Q;
    for(int i = 1; i <= N; i++){
        int v; cin >> v;
        update(1, 1, N, i, v);
    }
    while(Q--){
        clock_t t1 = clock();
        int op; cin >> op;
        if(op == 1){
            int k, v; cin >> k >> v;
            update(1, 1, N, k, v);
        } else {
            cout << (T[1].ans > N ? -1 : T[1].ans) << '\n';
        }
        clock_t t2 = clock();
        assert((double)(t2 - t1) / CLOCKS_PER_SEC <= 0.001);
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 174 ms 174080 KB Output is correct
2 Correct 186 ms 173964 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 259 ms 174088 KB Output is correct
2 Correct 274 ms 174268 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 361 ms 174088 KB Output is correct
2 Correct 403 ms 174096 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1922 ms 174228 KB Output is correct
2 Execution timed out 3082 ms 174220 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3062 ms 174112 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3070 ms 174220 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3079 ms 174104 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3088 ms 174108 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3092 ms 174076 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3064 ms 173976 KB Time limit exceeded
2 Halted 0 ms 0 KB -