제출 #512693

#제출 시각아이디문제언어결과실행 시간메모리
512693AdamGS기지국 (IOI20_stations)C++17
0 / 100
3036 ms2097156 KiB
#include "stations.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define rep(a, b) for(int a = 0; a < (b); ++a) #define st first #define nd second #define pb push_back #define all(a) a.begin(), a.end() const int LIM=1e3+7; vector<int>V[LIM]; int T[LIM], lpre=-1; void DFS(int x, int o, int v) { if(!v) T[x]=++lpre; for(auto i : V[x]) if(i!=o) DFS(i, x, v^1); if(v) T[x]=++lpre; } vector<int>label(int n, int k, vector<int>u, vector<int>v) { rep(i, n-1) { V[u[i]].pb(v[i]); V[v[i]].pb(u[i]); } DFS(0, 0, 0); vector<int>p(n); rep(i, n) p[i]=T[i]; return p; } int find_next_station(int s, int t, vector<int>c) { if(s==0) { for(auto i : c) if(i>=t) return i; } else if(s>=c[0]) { if(t>s || c.size()>1 && t<c[1]) return c[0]; for(int i=2; i<c.size(); ++i) if(c[i]>t) return c[i-1]; return c.back(); } else { if(t<s) return c.back(); for(int i=0; i<c.size()-1; ++i) if(c[i]>=t) return c[i]; return c.back(); } }

컴파일 시 표준 에러 (stderr) 메시지

stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:33:24: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   33 |   if(t>s || c.size()>1 && t<c[1]) return c[0];
stations.cpp:34:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |   for(int i=2; i<c.size(); ++i) if(c[i]>t) return c[i-1];
      |                ~^~~~~~~~~
stations.cpp:38:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |   for(int i=0; i<c.size()-1; ++i) if(c[i]>=t) return c[i];
      |                ~^~~~~~~~~~~
stations.cpp:41:1: warning: control reaches end of non-void function [-Wreturn-type]
   41 | }
      | ^
#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...