Submission #397566

#TimeUsernameProblemLanguageResultExecution timeMemory
397566CollypsoPainting Walls (APIO20_paint)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define ll long long #define ld long double #define vt vector #define pb push_back #define all(x) (x).begin(), (x).end() #define sz(x) (int) (x).size() #define FOR(i, a, b) for(int i = a; i <= b; i++) #define EACH(x, a) for (auto& x : a) #define print(x) cout << x << endl #pragma GCC optimize ("O3") #pragma GCC optimize ("O2") //#define endl '\n' //#define int long long using namespace std; int subtask1(int N, int M, int K, vt<int> C, vt<int> A, vt<vt<int>> B) { map<int, int> MP; FOR(i, 0, M - 1) { MP[B[i][0]] = i + 1; } int ans = 0; FOR(i, 0, N - 1) { //print(i); //print(ans); if (i > N - M) return -1; int j = MP[C[i]] - 1; if (j == -1) return -1; int k = j; FOR(l, 1, N - i) { if (B[(j + l) % M][0] != C[i + l]) { k = i + l - 1; break; } else if (l == N - i - 1) { k = i + l; } } ans += (k - i + 1 + (M - 1)) / M; i = k; } return ans; } int minimumInstructions(int N, int M, int K, vt<int> C, vt<int> A, vt<vt<int>> B) { bool sub1 = 1; FOR(i, 0, M - 1) { if (A[i] != 1) { sub1 = 0; break; } } if (sub1) return subtask1(N, M, K, C, A, B); } /**/ main() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); int ans = minimumInstructions(10, 4, 4, {1, 0, 3, 2, 1, 0, 2, 1, 0, 3}, {1, 1, 1, 1}, {{2}, {1}, {0}, {3}}); print(ans); } /**/

Compilation message (stderr)

paint.cpp:67:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   67 | main()
      |      ^
paint.cpp: In function 'int minimumInstructions(int, int, int, std::vector<int>, std::vector<int>, std::vector<std::vector<int> >)':
paint.cpp:64:1: warning: control reaches end of non-void function [-Wreturn-type]
   64 | }
      | ^
/tmp/cczrM7Hd.o: In function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccgg3hG7.o:paint.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status