Submission #619681

# Submission time Handle Problem Language Result Execution time Memory
619681 2022-08-02T14:33:13 Z ktkerem Friend (IOI14_friend) C++17
Compilation error
0 ms 0 KB
/*#pragma GCC target ("avx2")
#pragma GCC optimize ("O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")*/
#include<bits/stdc++.h>
#include<game.cpp>
/*#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
template<class T>
using oset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;
/**/
//typedef int ll;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 vll;
typedef unsigned __int128 uvll;
ll _i=0;
#define ffn(x) _i=x
#define llll std::pair<ll , ll>
#define stitr set<ll>::iterator
#define fora(y,x) for(ll y=_i;x>y;y++)
#define pb push_back
#define pf push_front
#define halo cout << "hello\n"
#define fi first
#define sec second
#define all(a) a.begin() , a.end()
const ll limit = 998244353; 
const ll ous = 1e5 + 7;
const ll dx[4] = {1 , 0 , 0 , -1} , dy[4] = {0,1,-1,0};
ll p[ous] , f[ous];
int findSample(int n , int con[] , int host[] , int op[]){
    fora(i , n){
        p[i] = con[i];
    }
    for(ll i = n-1;0 < i;i--){
        ll x = host[i];
        if(op[i] == 2){
            p[x] = std::max(p[x] + f[i] ,p[i] + f[x]);
            f[x]+= f[i];
        }
        else if(op[i] == 0){
            f[x] += std::max(f[i] , p[i]);
            p[x] += f[i];
        }
        else{
            p[x] = std::max({p[x] + f[i] , f[x] + p[i] , p[x] + p[i]});
            f[x] = f[i];
        }
    }
}

Compilation message

friend.cpp:7:9: fatal error: game.cpp: No such file or directory
    7 | #include<game.cpp>
      |         ^~~~~~~~~~
compilation terminated.