87812024-01-30 00:40:11rennKutyavetélkedőcpp17Compilation error
#include <bits/stdc++.h>
using namespace std;

inline bool cnt(unordered_set<int> &x, int &n) {
    return x.find(n) != x.end();
}

int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(0);

    int n, k, m, a, b;
    cin >> n >> k;

    vector<int> feladatok(n+2, -1), legjobb(n+2, -1);
    vector<unordered_set<int>> szabalyok(k+1);
    cin >> m;

    while(m--) {
        cin >> a >> b;
        a--; b--;
        if(a == k || b == k) continue;
        szabalyok[a].insert(b);
    }

    legjobb[0] = (feladatok[0]-1) == k ? -1 : 1;
    legjobb[1] = (feladatok[1]-1) == k ? -1 : 1;
    for(int i = 0, j = 0; i < n; i++) {
        if(j == 2) break;
        if(legjobb[i] == -1){
            j++;
            continue;
        }
        j = 0;
        if(cnt(szabalyok[feladatok[i]-1], feladatok[i+1]-1))
            legjobb[i+1] = max(legjobb[i+1], legjobb[i]+1);
        if(cnt(szabalyok[feladatok[i]-1], feladatok[i+2]-1))
            legjobb[i+2] = max(legjobb[i+2], legjobb[i]+1);
    }
    
    cout << max(0, max(legjobb[n-1], legjobb[n-2]));
}
Compilation error
exit status 1
main.cpp: In function 'int main()':
main.cpp:36:57: error: cannot bind non-const lvalue reference of type 'int&' to an rvalue of type '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'}
   36 |         if(cnt(szabalyok[feladatok[i]-1], feladatok[i+1]-1))
main.cpp:4:45: note:   initializing argument 2 of 'bool cnt(std::unordered_set<int>&, int&)'
    4 | inline bool cnt(unordered_set<int> &x, int &n) {
      |                                        ~~~~~^
main.cpp:38:57: error: cannot bind non-const lvalue reference of type 'int&' to an rvalue of type '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'}
   38 |         if(cnt(szabalyok[feladatok[i]-1], feladatok[i+2]-1))
main.cpp:4:45: note:   initializing argument 2 of 'bool cnt(std::unordered_set<int>&, int&)'
    4 | inline bool cnt(unordered_set<int> &x, int &n) {
      |                                        ~~~~~^
Exited with error status 1