Submission #831429

#TimeUsernameProblemLanguageResultExecution timeMemory
831429TrumlingStations (IOI20_stations)C++14
0 / 100
3050 ms684 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; //cout<<labels[start]<<' '; 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; } //cout<<here<<'\n'; for(int i=0;i<g[here].size();i++) dfs(i,1,g[here][i],here); //for(int i=0;i<n;i++) //cout<<labels[i]<<' '; return labels; } int find_next_station(int s, int t, vector<int> c) { if(c.size()>2) { ll j=0; while(t-(j+nn)>0) j+=nn; return j+1; } int mini=INF; for(auto x:c) mini=min(x,mini); if(t<s) return mini; ll j=0; while(t-(j+nn)>0) j+=nn; ll i=0; while(s-(i+nn)>0) 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:59:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   59 |   for(int i=0;i<g[here].size();i++)
      |               ~^~~~~~~~~~~~~~~
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:78:12: note: in expansion of macro 'INF'
   78 |   int mini=INF;
      |            ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...