답안 #1105972

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1105972 2024-10-28T15:51:56 Z InvMOD Tree Rotations (POI11_rot) C++14
0 / 100
1000 ms 35144 KB
#include<bits/stdc++.h>

using namespace std;

const int N = 2e5+5;

int n, cnt_node, timerDFS, sz[N], val[N];

int tin[N], tout[N], tour[N], bit[N];

vector<int> adj[N];

int dfs_Size(int x, int p){
    sz[x] = 1;

    tour[tin[x] = ++timerDFS] = x;
    for(int v : adj[x])if(v != p) sz[x] += dfs_Size(v, x);

    tout[x] = timerDFS;
    return sz[x];
}

void update(int p, int val){
    if(!p) return;
    for(; p <= n; p += p&-p) bit[p] += val;
    return;
}

int get(int p){
    int res = 0;
    if(!p || p < 0) return 0;
    for(; p; p -= p&-p) res += bit[p];
    return res;
}

int get_range(int l, int r){
    return get(r) - get(l-1);
}

void sack_add(int x){
    if(val[x]) update(val[x], 1);
}

void sack_rem(int x){
    if(val[x]) update(val[x], -1);
}

int sack(int x, int p, bool keep){
    int hev = 0;
    for(int v : adj[x])if(v != p && v != hev) sack(v, x, 0);

    int answer = 0;
    if(hev) answer = answer + sack(hev, x, 1);

    sack_add(x);
    int left = (val[x] ? get_range(val[x]+1, n) : 0);
    int right = (val[x] ? get_range(1, val[x]-1) : 0);

    for(int v : adj[x])if(v != p && v != hev){

        for(int i = tin[v]; i <= tout[v]; i++){
            int cur_node = tour[i];
            left = left + (val[cur_node] ? get_range(val[cur_node]+1, n) : 0);
            right = right + (val[cur_node] ? get_range(1, val[cur_node]-1) : 0);
        }

        for(int i = tin[v]; i <= tout[v]; i++){
            sack_add(tour[i]);
        }
    }

    if(!keep){
        for(int i = tin[x]; i <= tout[x]; i++)
            sack_rem(tour[i]);
    }
    return answer + min(left, right);
}

void input(int cur_node)
{
    int x; cin >> x;
    if(!x){
        // Start 2 new subtree
        for(int i = 0; i < 2; i++){
            adj[cur_node].push_back(++cnt_node);
            input(cnt_node);
        }
    }
    else{
        // Leaf info
        val[cur_node] = x;
    }
    return;
}

void solve()
{
    cin >> n;

    cnt_node = 1;
    input(cnt_node);

    dfs_Size(1, -1);
    cout << sack(1, -1, 0) <<"\n";
}

int32_t main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    #define name "InvMOD"
    if(fopen(name".INP", "r")){
        freopen(name".INP", "r", stdin);
        freopen(name".OUT", "w", stdout);
    }

    solve();
    return 0;
}

Compilation message

rot.cpp: In function 'int32_t main()':
rot.cpp:113:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  113 |         freopen(name".INP", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
rot.cpp:114:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  114 |         freopen(name".OUT", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 8784 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 8784 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 8784 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 228 ms 9296 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1064 ms 10320 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 118 ms 11088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1042 ms 20080 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 46 ms 28496 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 54 ms 35144 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 49 ms 33424 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 59 ms 32812 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -