답안 #769003

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
769003 2023-06-29T04:39:13 Z boyliguanhan The Potion of Great Power (CEOI20_potion) C++17
0 / 100
710 ms 262144 KB
#include<bits/stdc++.h>
#pragma GCC optimize(2)
#define NN 100100
using namespace std;
int h[NN], n;
map<int, multiset<int>> adj[NN];
int upd[2*NN][2];
void init(int N, int D, int H[]) {
    n = N;
    for(int i = 0; i < N; i++)
        h[i] = H[i];
}
void curseChanges(int U, int A[], int B[]) {
    for(int i = 0; i < n; i++) adj[i][0];
    for(int i = 1; i <= U; i++) {
        upd[i][0] = A[i-1], upd[i][1] = B[i-1];
    }
    set<int> xxx[NN];
    for(int i = 1; i <= U/1000*1000; i++) {
        int a= upd[i][0], b = upd[i][1];
        multiset<int> x = (--adj[a].end())->second, y = (--adj[b].end())->second;
        if(xxx[a].count(b)) xxx[a].erase(b), xxx[b].erase(a), x.erase(x.find(h[b])), y.erase(y.find(h[a]));
        else xxx[a].insert(b), xxx[b].insert(a), x.insert(h[b]), y.insert(h[a]);
        adj[a][(i/1000+1)*1000] = x, adj[b][(i/1000+1)*1000] = y;
    }
}
int calc(vector<int> a, vector<int> b){
    int ans = 1e9;
    for(int i = 0, j = 0; i < (int)a.size()&&j < (int)b.size();i++) {
        if(a[i]>b[j]) swap(a, b), swap(i, j);
        if(j) ans=min(ans,(int)abs(a[i]-b[j-1]));
        ans = min(ans, abs(a[i] - b[j]));
    }
    return ans;
}
int question(int x, int y, int v) {
    multiset<int> a = (--adj[x].upper_bound(v))->second, b = (--adj[y].upper_bound(v))->second;
    int t = v/1000*1000;
    t = max(t, 1);
    while(t <= v) {
        int c = upd[t][0], d = upd[t][1];
        if(d==x) swap(c, d);
        if(c==x) {
            if(a.count(d)) a.erase(d);
            else a.insert(d);
        }
        if(d==y) swap(c, d);
        if(c==y) {
            if(b.count(d)) b.erase(d);
            else b.insert(d);
        }
        t++;
    }
    vector<int> c, d;
    for(auto i: a) c.push_back(h[i]);
    for(auto i: b) d.push_back(h[i]);
    sort(c.begin(), c.end());
    sort(d.begin(), d.end());
    return calc(c,d);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 9680 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 14 ms 20304 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 710 ms 262144 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 558 ms 134912 KB Incorrect
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 29 ms 30664 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 9680 KB Output is correct
2 Runtime error 14 ms 20304 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -