Submission #831401

#TimeUsernameProblemLanguageResultExecution timeMemory
831401TrumlingStations (IOI20_stations)C++14
Compilation error
0 ms0 KiB
#include "stations.h" #include <vector> #include<bits/stdc++.h> using namespace std; #define F first #define S second #define all(x) x.begin(),x.end() typedef long long ll; #define pb push_back #define INF 99999999999 ll nn; vector<vector<int>>g; ll here=0; vector<int>labels; void dfs(int i,int id,int start,int pre) { labels[start]=i*nn + id; for(auto x:g[start]) if(pre!=x) dfs(i,id+1,x,start); } vector<int> label(int n, int k, vector<int> u, vector<int> v) { nn=n; g.assign(n,vector<int>()); labels.assign(n,0); vector<bool>cnt(n,0); for (int i = 0; i < n-1; i++) { g[u[i]].pb(v[i]); g[v[i]].pb(u[i]); if(g[u[i]].size()>2) here=u[i]; if(g[v[i]].size()>2) here=v[i]; if(g[u[i]].size()==2) cnt[u[i]]=1; if(g[v[i]].size()==2) cnt[v[i]]=1; } if(g[here].size()<=2) for(int i=0;i<n;i++) if(!cnt[i]) { here=i; break; } for(int i=0;i<g[here].size();i++) dfs(i,0,g[here][i],0) return labels; } int find_next_station(int s, int t, vector<int> c) { if(c.size()>2) { ll j=0; while(t-(j+nn)+1) j+=nn; return j; } int mini=INF; for(auto x:c) mini=min(x,mini); if(t<s) return mini; ll j=0; while(t-(j+nn)+1) j+=nn; ll i=0; while(t-(i+nn)+1) i+=nn; if(i==j) return s+1; else return mini; }

Compilation message (stderr)

stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:56:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   56 |   for(int i=0;i<g[here].size();i++)
      |               ~^~~~~~~~~~~~~~~
stations.cpp:57:25: error: expected ';' before 'return'
   57 |    dfs(i,0,g[here][i],0)
      |                         ^
      |                         ;
   58 | 
   59 |      return labels;
      |      ~~~~~~              
stations.cpp:60:5: warning: no return statement in function returning non-void [-Wreturn-type]
   60 |     }
      |     ^
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:11:17: warning: overflow in conversion from 'long int' to 'int' changes value from '99999999999' to '1215752191' [-Woverflow]
   11 |     #define INF 99999999999
      |                 ^~~~~~~~~~~
stations.cpp:73:12: note: in expansion of macro 'INF'
   73 |   int mini=INF;
      |            ^~~