cezar.cpp: In function 'int32_t main()':
cezar.cpp:24:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i<min(f.size() , t.size()) ; i++){
^
cezar.cpp:51:7: warning: 'auto' changes meaning in C++11; please remove it [-Wc++0x-compat]
for(auto tt : adj[u]){
^
cezar.cpp:51:12: error: 'tt' does not name a type
for(auto tt : adj[u]){
^
cezar.cpp:55:2: error: expected ';' before '}' token
}
^
cezar.cpp:55:2: error: expected primary-expression before '}' token
cezar.cpp:55:2: error: expected ';' before '}' token
cezar.cpp:55:2: error: expected primary-expression before '}' token
cezar.cpp:55:2: error: expected ')' before '}' token
cezar.cpp:55:2: error: expected primary-expression before '}' token
cezar.cpp:49:7: warning: unused variable 'u' [-Wunused-variable]
int u = q.front();
^