Submission #251151

# Submission time Handle Problem Language Result Execution time Memory
251151 2020-07-20T12:20:14 Z AaronNaidu Dreaming (IOI13_dreaming) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include <dreaming.h>
using namespace std;

vector<pair<int, int>> graph[100001];

int travelTime(int n, int m, int l, vector<int> a, vector<int> b, vector<int> t) {
    int maxDist = 0;
    int secondMaxDist = 0;
    for (int i = 0; i < t.size(); i++)
    {
        if (t[i] > maxDist)
        {
            secondMaxDist = maxDist;
            maxDist = t[i];
        }
        else if (t[i] > secondMaxDist)
        {
            secondMaxDist = t[i];
        }
    }
    return max(maxDist, secondMaxDist + l);
}

Compilation message

dreaming.cpp: In function 'int travelTime(int, int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
dreaming.cpp:10:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (int i = 0; i < t.size(); i++)
                     ~~^~~~~~~~~~
/tmp/ccGqdJj2.o: In function `main':
grader.c:(.text.startup+0xa2): undefined reference to `travelTime'
collect2: error: ld returned 1 exit status