furniture.cpp:30:11: error: conflicting declaration 'std::queue<std::pair<long long int, long long int> > q'
30 | queue<pi> q;
| ^
furniture.cpp:25:10: note: previous declaration as 'll q'
25 | ll t,n,m,q,k;
| ^
furniture.cpp: In function 'll bfs()':
furniture.cpp:34:7: error: request for member 'push' in 'q', which is of non-class type 'll' {aka 'long long int'}
34 | q.push({0,0});
| ^~~~
furniture.cpp:35:14: error: request for member 'empty' in 'q', which is of non-class type 'll' {aka 'long long int'}
35 | while(!q.empty()){
| ^~~~~
furniture.cpp:36:20: error: request for member 'front' in 'q', which is of non-class type 'll' {aka 'long long int'}
36 | pi cur = q.front();
| ^~~~~
furniture.cpp:37:11: error: request for member 'pop' in 'q', which is of non-class type 'll' {aka 'long long int'}
37 | q.pop();
| ^~~
furniture.cpp:50:15: error: request for member 'push' in 'q', which is of non-class type 'll' {aka 'long long int'}
50 | q.push({nx,ny});
| ^~~~