Submission #1076028

# Submission time Handle Problem Language Result Execution time Memory
1076028 2024-08-26T10:37:01 Z amin The Big Prize (IOI17_prize) C++14
Compilation error
0 ms 0 KB
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
long long minimum_walk(vector<int> p, int s) {
	ll ans=0;
	ll n=p.size();

	int o[n+1];
	for(int i=0;i<=n;i++)
    {
        o[i]=0;
    }
    int pre=0;
   ll mi=1000000;
   ll ma=0;
   vector<pair<int,int> >r;
	for(ll i=0;i<n;i++)
    {
           if(p[i]!=i&&o[i]==0)
           {
               ll t=i;
               mi=min(mi,i);
               ma=i;
               ll x=p[i];
               o[i]=1;
               while(x!=i)
               {
                    t=max(t,x);
                   o[x]=1;
                   x=p[x];
               }
               r.push_back({i,t});
           }


            ans+=abs(p[i]-i);
    }
    sort(r.begin(),r.end());
    if(r.size()>0)
    {


   for(int i=0;i<r.size()-1;i++)
   {
       if(r[i].second>r[i+1].first)
       {
           r[i+1].first=r[i].first;
           r[i+1].second=max(r[i].second,r[i+1].second);
       }
   }
   int o=r.size();
   ma=r[o-1].first;
    }
if(mi==1000000)
    mi=0;
    return ans+ma*2;
}

Compilation message

prize.cpp:1:10: fatal error: books.h: No such file or directory
    1 | #include "books.h"
      |          ^~~~~~~~~
compilation terminated.