Submission #1108631

# Submission time Handle Problem Language Result Execution time Memory
1108631 2024-11-04T16:59:34 Z Ariadna Gondola (IOI14_gondola) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

int valid(int n, int inputSeq[]) {
    unordered_map<int, int> cnt;
    for (int i = 0; i < n; ++i) cnt[inputSeq[i]]++;
    if ((int)cnt.size() < n) return 0;
    
    for (int i = 1; inputSeq[0]+i <= n; ++i) {
        if (inputSeq[i] <= n && inputSeq[i] != inputSeq[0]+i) return 0;
    }
    
    for (int i = 1; inputSeq[0]-i > 0; ++i) {
        if (inputSeq[n-i] <= n && inputSeq[n-i] != inputSeq[0]-i) return 0;
    }
    return 1;
}

int replacement(int n, int gondolaSeq[], int replacementSeq[]) {
    vector<int> gondola(n);
    int idx = -1;
    for (int i = 0; i < n; ++i) {
        if (gondolaSeq[i] <= n) {
            gondola[i] = gondolaSeq[i];
            idx = i;
            break;
        }
    }
    if (idx == -1) {
        for (int i = 0; i < n; ++i) gondola[i] = i+1;
    } else {
        for (int i = 1; gondola[idx]+i <= n; ++i) {
            gondola[(idx+i)%n] = gondola[idx]+i;
        }
        for (int i = 1; gondola[idx]-i > 0; ++i) {
            gondola[(idx-i+n)%n] = gondola[idx]-i;
        }
    }
    
    vector<pair<int, int>> replacements;
    replacements.reserve(n);
    for (int i = 0; i < n; ++i) {
        if (gondolaSeq[i] != gondola[i]) replacements.push_back({gondolaSeq[i], gondola[i]});
    }

    sort(replacements.begin(), replacements.end());
    int l = 0, new_gondola = n+1;
    for (pair<int, int> p: replacements) {
        while (p.first > new_gondola) {
            replacementSeq[l] = p.second;
            p.second = new_gondola;
            ++new_gondola; ++l;
        } 
        replacementSeq[l] = p.second;
        ++new_gondola;
        ++l;
    }
    for (int i = 0; i < l; ++i) cout << replacementSeq[i] << " ";

    return l;
}

int countReplacement(int n, int inputSeq[]) {
    return 0;
}

Compilation message

/usr/bin/ld: /tmp/ccWI5CNo.o: in function `main':
grader.cpp:(.text.startup+0xb6): undefined reference to `valid'
/usr/bin/ld: grader.cpp:(.text.startup+0x108): undefined reference to `countReplacement'
/usr/bin/ld: grader.cpp:(.text.startup+0x132): undefined reference to `replacement'
collect2: error: ld returned 1 exit status