Submission #1113771

#TimeUsernameProblemLanguageResultExecution timeMemory
1113771sunboiRobots (IOI13_robots)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;


int putaway(int A,int B,int T,int X[],int Y[],int W[],int S[]){

    sort(X, X + A);
    reverse(X, X + A);
    
    vector<pair<int, int>> a(T);
    bool f = 0;
    for (int i = 0; i < T; i++){
        
        a[i] = {W[i], S[i]};
        if (a[i].first >= X[0]) f = 1;
    }
    if (f) return -1;
    
    sort(a.begin(), a.end());
    reverse(a.begin(), a.end());
    int ini = 1, fin = T + 1;
    while(ini < fin){
        int m = (ini + fin) / 2;
        int k = 0;
        int tiempo = 0;
        for (int i = 0; i < A; i++){
            tiempo = 0;
            while(k < T && tiempo < m && X[i] > a[k].first){
                k++;
                tiempo++;
            }
        }
        if (k == T){
            fin = m;
        }else ini = m + 1;
    }
    return ini;
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccWJ1jD5.o: in function `main':
grader.c:(.text.startup+0x1b1): undefined reference to `putaway'
collect2: error: ld returned 1 exit status