Submission #1014123

# Submission time Handle Problem Language Result Execution time Memory
1014123 2024-07-04T11:41:40 Z Ahmed_Solyman Connecting Supertrees (IOI20_supertrees) C++14
Compilation error
0 ms 0 KB
/*
In the name of Allah
made by: Ahmed_Solyman
*/
#include <bits/stdc++.h>
#include <ext/rope>

using namespace std;
using namespace __gnu_cxx;
#pragma GCC optimize("-Ofast")
#pragma GCC optimize("-O1")
//-------------------------------------------------------------//
typedef long long ll;
typedef unsigned long long ull;
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define PI acos(-1)
#define lb lower_bound
#define ub upper_bound
#define all(v) v.begin(),v.end()
#define allr(v) v.rbegin(),v.rend()
#define sum_to(n) (n*(n+1))/2
#define pb push_back
#define pf push_front
#define fil(arr,x) memset(arr,x,sizeof(arr))
#define endl '\n'
const ll mod=1e9+7;
int dx[8]={0,1,0,-1,1,1,-1,-1};
int dy[8]={1,0,-1,0,1,-1,-1,1};
//-------------------------------------------------------------//
ll lcm(ll a,ll b)
{
    return (max(a,b)/__gcd(a,b))*min(a,b);
}
void person_bool(bool x)
{
    cout<<(x?"YES":"NO")<<endl;
}
int construct(int[][] p){
    int n=0;
    for(auto i:p)n++;
    int b[n][n];
    for(int i=0;i<n-1;i++){
        b[i][i+1]=b[i+1][i]=1;
    }
    build(b);
    return 1;
}

Compilation message

supertrees.cpp:38:21: error: multidimensional array must have bounds for all dimensions except the first
   38 | int construct(int[][] p){
      |                     ^
supertrees.cpp:38:23: error: expected ',' or '...' before 'p'
   38 | int construct(int[][] p){
      |                       ^
supertrees.cpp: In function 'int construct()':
supertrees.cpp:40:16: error: 'p' was not declared in this scope
   40 |     for(auto i:p)n++;
      |                ^
supertrees.cpp:45:5: error: 'build' was not declared in this scope
   45 |     build(b);
      |     ^~~~~