Submission #1020402

# Submission time Handle Problem Language Result Execution time Memory
1020402 2024-07-12T03:51:01 Z KhoaDuy Tree Rotations (POI11_rot) C++14
0 / 100
1000 ms 65536 KB
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
const int MAXN=4*1e5;
vector<vector<int>> graph(MAXN+1);
vector<vector<int>> leaf;
int seg[MAXN]={0};
int n;
int ptr=0;
long long ans=0;
void build(int l,int r){
    l+=n,r+=n;
    while(l>1){
        l>>=1,r>>=1;
        for(int v=l;v<=r;v++){
            seg[v]=seg[v<<1]+seg[(v<<1)|1];
        }
    }
}
void modify(int i,int x){
    i+=n;
    seg[i]+=x;
    build(i-n,i-n);
}
long long query(int l,int r){
    if(l>r){
        return 0;
    }
    l+=n,r+=n;
    int curr=0;
    for(;l<=r;l>>=1,r>>=1){
        if(l&1){
            curr+=seg[l];
            l++;
        }
        if(!(r&1)){
            curr+=seg[r];
            r--;
        }
    }
    return curr;
}
void DFS(int u,bool keep){
    int big=-1;
    long long inver=0;
    long long tot=0;
    for(int i=0;i<graph[u].size();i++){
        int v=graph[u][i];
        if((big==-1||leaf[big].size()<leaf[v].size())){
            big=v;
        }
    }
    if(big==-1){
        leaf[u].push_back(u);
        if(keep){
            modify(u-1,1);
        }
    }
    else{
        for(int i=0;i<graph[u].size();i++){
            int v=graph[u][i];
            if(v!=big){
                DFS(v,false);
            }
        }
        DFS(big,true);
        tot=leaf[big].size();
        swap(leaf[u],leaf[big]);
        for(int i=0;i<graph[u].size();i++){
            int v=graph[u][i];
            if(v!=big){
                tot*=((long long)(leaf[v].size()));
                for(int j=0;j<leaf[v].size();j++){
                    int temp=leaf[v][j];
                    inver+=query(temp,n-1);
                }
            }
        }
        if(!keep){
            for(int i=0;i<leaf[u].size();i++){
                modify(leaf[u][i],-1);
            }
        }
        for(int i=0;i<graph[u].size();i++){
            int v=graph[u][i];
            if(v!=big){
                while(!leaf[v].empty()){
                    leaf[u].push_back(leaf[v].back());
                    if(keep){
                        modify(leaf[v].back()-1,1);
                    }
                    leaf[v].pop_back();
                }
            }
        }
    }
    ans+=min(inver,tot-inver);
}
vector<int> input;
int tim;
int Buildtree(){
    if(input[ptr]!=0){
        ptr++;
        return input[ptr-1];
    }
    ptr++;
    int u=tim;
    tim++;
    int v=Buildtree();
    graph[u].push_back(v);
    v=Buildtree();
    graph[u].push_back(v);
    return u;
}

signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> n;
    tim=n+1;
    cin.ignore();
    string line;
    while(getline(cin,line)){
        if(line.empty()){
            break;
        }
        stringstream ss;
        ss << line;
        int x=0;
        ss >> x;
        input.push_back(x);
    }
    int root=Buildtree();
    leaf.resize(tim);
    DFS(root,true);
    cout << ans;
}

Compilation message

rot.cpp: In function 'void DFS(int, bool)':
rot.cpp:47:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |     for(int i=0;i<graph[u].size();i++){
      |                 ~^~~~~~~~~~~~~~~~
rot.cpp:60:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   60 |         for(int i=0;i<graph[u].size();i++){
      |                     ~^~~~~~~~~~~~~~~~
rot.cpp:69:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |         for(int i=0;i<graph[u].size();i++){
      |                     ~^~~~~~~~~~~~~~~~
rot.cpp:73:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |                 for(int j=0;j<leaf[v].size();j++){
      |                             ~^~~~~~~~~~~~~~~
rot.cpp:80:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   80 |             for(int i=0;i<leaf[u].size();i++){
      |                         ~^~~~~~~~~~~~~~~
rot.cpp:84:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   84 |         for(int i=0;i<graph[u].size();i++){
      |                     ~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 9816 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 9816 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 9820 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 181 ms 23376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1016 ms 65536 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 134 ms 20188 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 984 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1010 ms 65536 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 764 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1018 ms 63552 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1061 ms 64836 KB Time limit exceeded
2 Halted 0 ms 0 KB -