Need help in debugging this error.

Правка en2, от bijju74, 2022-07-02 22:50:30

So basically I have a vector<array<long long, 2>> adj[N]; and I want to access it's elements for(int i=0; i<n; ++i){ long long X=i;

long long Y=adj[i][1]; //gives error
    long long W=adj[i][0]; //gives error

}

error: cannot convert '__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 2> >, std::array<int, 2> >::value_type' {aka 'std::array<int, 2>'} to 'int' in initialization

I've been trying to solve what's wrong with this & why this isn't possible. Can someone help please?

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский bijju74 2022-07-02 22:50:30 30
en1 Английский bijju74 2022-07-02 22:49:36 538 Initial revision (published)