Submission #33825

#TimeUsernameProblemLanguageResultExecution timeMemory
33825mohammad_kilaniSimurgh (IOI17_simurgh)C++14
Compilation error
0 ms0 KiB
#include "simurgh.h" #include <bits/stdc++.h> using namespace std; const int N = 501; int vis[N] , vi = 0; vector< pair<int,int> > g[N], T[N]; vector< int > tree , anss ; bool ok[N * N]; bool asked[N * N]; void DFS(int node){ vis[node] = vi; for(int i=0;i<g[node].size();i++){ if(vis[g[node][i].first] != vi){ tree.push_back(g[node][i].second); T[node].push_back(g[node][i]); T[g[node][i].first].push_back(make_pair(node,g[node][i].second)); DFS(g[node][i].first); } } } bool DFS2(int node,int target){ if(node == target) return true; vis[node] = vi; for(int i=0;i<T[node].size();i++){ int newnode = T[node][i].first; if(vis[newnode] != vi && DFS2(newnode,target)) return true; } return false; } std::vector<int> find_roads(int n, std::vector<int> u, std::vector<int> v) { for(int i=0;i<u.size();i++){ g[u[i]].push_back(make_pair(v[i],i)); g[v[i]].push_back(make_pair(u[i],i)); } vi++; DFS(0); sort(tree.begin(),tree.end()); int res = count_common_roads(tree); for(int i=0;i<n;i++){ vector< pair<int,int> > v; int mx = res; for(int j=0;j<g[i].size();j++){ if(asked[g[i][j].second]) continue; //asked[g[i][j].second] = true; int newnode = g[i][j].first; int edge = -1; for(int k=0;k<T[i].size();k++){ vi++; if(DFS2(T[i][k].first,newnode)){ edge = T[i][k].second; break; } } assert(edge != -1); vector<int> v; for(int i=0;i<tree.size();i++){ if(tree[i] == edge) continue; r.push_back(tree[i]); } r.push_back(g[i][j].second); sort(r.begin(),r.end()); int cur = count_common_roads(r); mx = max(mx,cur); v.push_back(make_pair(g[i][j].second,cur)); } for(int i=0;i<v.size();i++){ if(v[i].second == mx){ ok[v[i].first] = true; } } } for(int i=0;i<u.size();i++) if(ok[i]) anss.push_back(i); return anss; }

Compilation message (stderr)

simurgh.cpp: In function 'void DFS(int)':
simurgh.cpp:14:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<g[node].size();i++){
               ^
simurgh.cpp: In function 'bool DFS2(int, int)':
simurgh.cpp:27:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<T[node].size();i++){
               ^
simurgh.cpp: In function 'std::vector<int> find_roads(int, std::vector<int>, std::vector<int>)':
simurgh.cpp:35:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<u.size();i++){
               ^
simurgh.cpp:46:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j=0;j<g[i].size();j++){
                ^
simurgh.cpp:52:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for(int k=0;k<T[i].size();k++){
                 ^
simurgh.cpp:61:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for(int i=0;i<tree.size();i++){
                 ^
simurgh.cpp:63:5: error: 'r' was not declared in this scope
     r.push_back(tree[i]);
     ^
simurgh.cpp:65:4: error: 'r' was not declared in this scope
    r.push_back(g[i][j].second);
    ^
simurgh.cpp:69:45: error: no matching function for call to 'std::vector<int>::push_back(std::pair<int, int>)'
    v.push_back(make_pair(g[i][j].second,cur));
                                             ^
In file included from /usr/include/c++/5/vector:64:0,
                 from simurgh.h:1,
                 from simurgh.cpp:1:
/usr/include/c++/5/bits/stl_vector.h:913:7: note: candidate: void std::vector<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::value_type = int]
       push_back(const value_type& __x)
       ^
/usr/include/c++/5/bits/stl_vector.h:913:7: note:   no known conversion for argument 1 from 'std::pair<int, int>' to 'const value_type& {aka const int&}'
/usr/include/c++/5/bits/stl_vector.h:931:7: note: candidate: void std::vector<_Tp, _Alloc>::push_back(std::vector<_Tp, _Alloc>::value_type&&) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::value_type = int]
       push_back(value_type&& __x)
       ^
/usr/include/c++/5/bits/stl_vector.h:931:7: note:   no known conversion for argument 1 from 'std::pair<int, int>' to 'std::vector<int>::value_type&& {aka int&&}'
simurgh.cpp:71:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i=0;i<v.size();i++){
                ^
simurgh.cpp:78:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<u.size();i++) if(ok[i]) anss.push_back(i);
               ^