Submission #979597

#TimeUsernameProblemLanguageResultExecution timeMemory
979597vjudge1Painting Walls (APIO20_paint)C++17
Compilation error
0 ms0 KiB
#include "paint.h" #include<bits/stdc++.h> using namespace std; const int INF = 1e9; int eq(int c[], int p, vector<int> b[], int m) { int ok = 1; for(int i = p; i < p + m; ++i) { int _ok = 0; for(int j : b[i - p]) _ok |= c[i] == j; ok &= _ok; } return ok; } void sdvig(vector<int> b[], int m) { for(int i = 0; i < m - 1; ++i) swap(b[i], b[i + 1]); } int minimumInstructions(int n, int m, int k, int c[], int a[], vector<int> b[]) { int i; int dp[n + 5] = {}; for(i = 0; i <= n - m; ++i) { for(int t = 0; t < m && !dp[i]; ++t) { if(eq(c, i, b, m)) dp[i] = 1; sdvig(b, m); } } int ans = 1, cur = 0; while(cur < n - m) { int lst = INF; for(i = cur + 1; i <= cur + m; ++i) if(dp[i]) lst = i; cur = lst; ++ans; } // for(i = 0; i < n; ++i) // cout << dp[i] << ' '; // return; return (cur < INF ? ans : -1); } //int main() //{ //// ios_base::sync_with_stdio(0); //// cin.tie(0), cout.tie(0); //// solve(); //} //8 3 5 //3 3 1 3 4 4 2 2 //3 0 1 2 //2 2 3 //2 3 4

Compilation message (stderr)

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