Submission #953526

# Submission time Handle Problem Language Result Execution time Memory
953526 2024-03-26T05:30:53 Z irmuun Gondola (IOI14_gondola) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>

using namespace std;

#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()

int valid(int n, int in[]){
    int mn=n+1,pos=-1;;
    for(int i=0;i<n;i++){
        if(in[i]<=n){
            mn=min(mn,in[i]);
            pos=i;
        }
    }
    if(pos==-1) return 1;
    for(int i=0;i<n;i++){
        int p=(pos+i)%n;
        if(in[p]<=n&&in[p]!=m+i) return 0;
    }
    return 1;
}
int replacement(int n, int gon[], int rep[]){
    return 0;
}
int countReplacement(int n, int in[]){
    return 0;
}

Compilation message

gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:23:29: error: 'm' was not declared in this scope
   23 |         if(in[p]<=n&&in[p]!=m+i) return 0;
      |                             ^