Submission #1053903

#TimeUsernameProblemLanguageResultExecution timeMemory
1053903aaaaaarrozWiring (IOI17_wiring)C++17
Compilation error
0 ms0 KiB
#include <iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; long long min_total_length(vector<int>& red, vector<int>& blue) { int n = red.size(); int m = blue.size(); vector<vector<long long>> dp(n + 1, vector<long long>(m + 1, INT64_MAX)); dp[0][0] = 0; for (int i = 0; i <= n; ++i) { for (int j = 0; j <= m; ++j) { if (i > 0 && j > 0) { dp[i][j] = min(dp[i][j], dp[i-1][j-1] + abs(red[i-1] - blue[j-1])); } if (i > 0) { dp[i][j] = min(dp[i][j], dp[i-1][j]); } if (j > 0) { dp[i][j] = min(dp[i][j], dp[i][j-1]); } } } return dp[n][m]; }

Compilation message (stderr)

/usr/bin/ld: /tmp/ccW5KE09.o: in function `main':
grader.cpp:(.text.startup+0x23a): undefined reference to `min_total_length(std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status