0_0_37665260_26930.cpp: In function 'void solved(ll)':
0_0_37665260_26930.cpp:31:8: error: expected unqualified-id before '[' token
auto [x,y]=q.front();q.pop();
^
0_0_37665260_26930.cpp:32:8: error: 'x' was not declared in this scope
if(s[x]<ans[y]) continue;
^
0_0_37665260_26930.cpp:32:15: error: 'y' was not declared in this scope
if(s[x]<ans[y]) continue;
^
0_0_37665260_26930.cpp:33:6: error: 'y' was not declared in this scope
if(y==n) continue;
^
0_0_37665260_26930.cpp:34:7: error: 'y' was not declared in this scope
ans[y]=s[x];
^
0_0_37665260_26930.cpp:34:12: error: 'x' was not declared in this scope
ans[y]=s[x];
^
0_0_37665260_26930.cpp:35:20: error: no matching function for call to 'std::queue<std::pair<long long int, long long int> >::push(<brace-enclosed initializer list>)'
q.push({d[x],y+1});
^
0_0_37665260_26930.cpp:35:20: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/queue:64:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:85,
from 0_0_37665260_26930.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:215:7: note: void std::queue<_Tp, _Sequence>::push(const value_type&) [with _Tp = std::pair<long long int, long long int>; _Sequence = std::deque<std::pair<long long int, long long int>, std::allocator<std::pair<long long int, long long int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<long long int, long long int>]
push(const value_type& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:215:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type& {aka const std::pair<long long int, long long int>&}'
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:220:7: note: void std::queue<_Tp, _Sequence>::push(std::queue<_Tp, _Sequence>::value_type&&) [with _Tp = std::pair<long long int, long long int>; _Sequence = std::deque<std::pair<long long int, long long int>, std::allocator<std::pair<long long int, long long int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<long long int, long long int>]
push(value_type&& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:220:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::queue<std::pair<long long int, long long int> >::value_type&& {aka std::pair<long long int, long long int>&&}'
|