Submission #219135

# Submission time Handle Problem Language Result Execution time Memory
219135 2020-04-03T20:13:25 Z summitwei Gondola (IOI14_gondola) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include <gondola.h>
using namespace std;
typedef vector<int> vi;
typedef vector<pair<int, int> > vpii;
typedef pair<int, int> pii;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<double, double> pdd;
typedef vector<ll> vll;
#define INF 0x3f3f3f3f
#define MOD 1000000007LL
#define EPSILON 0.00001
#define f first
#define s second
#define pb push_back
#define mp make_pair

#define FOR(i, a, b) for (ll i=(a); i<=(signed)(b); i++)
#define F0R(i, a) for (ll i=0; i<(signed)(a); i++)
#define RFOR(i, a, b) for (ll i=(a); i >= b; i--)

#define MN 100005
int rep[MN*2];
int valid(int n, int inputSeq[]){
    F0R(i, n) rep[i] = rep[i+n] = inputSeq[i];
    int loc = min_element(rep, rep+2*n)-rep;
    F0R(i, n) inputSeq[i] = rep[i+loc];
    set<int> hmm;
    int v = -1;
    if(inputSeq[0] <= n) v = inputSeq[0];
    F0R(i, n){
        if(hmm.count(rep[i])) return 0;
        hmm.insert(rep[i]);
        if(inputSeq[i]<=n && inputSeq[i]-i != v) return 0;
    }
    return 1;
}
int replacement(int n, int gondolaSeq[], int replacementSeq[]);
int countReplacement(int n, int inputSeq[]);

/*int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int a[7] = {1, 2, 3, 4, 5, 6, 7};
    int b[6] = {3, 4, 5, 6, 1, 2};
    int c[7] = {1, 5, 3, 4, 2, 7, 6};
    int d[4] = {4, 3, 2, 1};
    int e[7] = {1, 2, 3, 4, 5, 6, 5};
    int f[7] = {2, 3, 4, 9, 6, 7, 1};
    int g[5] = {10, 4, 3, 11, 12};
    cout << valid(7, a) << "\n";
    cout << valid(6, b) << "\n";
    cout << valid(7, c) << "\n";
    cout << valid(4, d) << "\n";
    cout << valid(7, e) << "\n";
    cout << valid(7, f) << "\n";
    cout << valid(5, g) << "\n";
    
    return 0;
}*/

Compilation message

/tmp/cc3oT9yX.o: In function `main':
grader.cpp:(.text.startup+0xc3): undefined reference to `countReplacement'
grader.cpp:(.text.startup+0x106): undefined reference to `replacement'
collect2: error: ld returned 1 exit status