제출 #680846

#제출 시각아이디문제언어결과실행 시간메모리
680846aryan12기지국 (IOI20_stations)C++17
76 / 100
877 ms868 KiB
#include "stations.h" #include <vector> #include <bits/stdc++.h> using namespace std; const int N = 1001; int tin[N], tout[N], depth[N]; int tim = -1; vector<int> g[N]; void dfs(int node, int par) { tin[node] = ++tim; for(int to: g[node]) { if(to == par) continue; depth[to] = depth[node] + 1; dfs(to, node); } tout[node] = ++tim; } vector<int> label(int n, int k, vector<int> u, vector<int> v) { tim = -1; for(int i = 0; i < N; i++) { g[i].clear(); } for(int i = 0; i < u.size(); i++) { g[u[i]].push_back(v[i]); g[v[i]].push_back(u[i]); } depth[0] = 1; dfs(0, -1); vector<int> labels; // cout << "in label\n"; for(int i = 0; i < n; i++) { // cout << tin[i] << " " << tout[i] << "\n"; // cout << "label assigned: " << tout[i] * 1000 + tin[i] << "\n"; if(depth[i] % 2 == 1) { labels.push_back(tin[i]); } else { labels.push_back(tout[i]); } } return labels; } int find_next_station(int s, int t, std::vector<int> c) { if(c[0] > s) { // currently in depth[i] % 2 == 0 int starting = s + 1; for(int i = 0; i < c.size() - 1; i++) { if(starting <= t && t <= c[i]) { return c[i]; } starting = c[i] + 1; } return c[c.size() - 1]; } else { // currently in depth[i] % 2 == 1 int ending = s; for(int i = c.size() - 1; i > 0; i--) { if(c[i] <= t && t <= ending) { return c[i]; } ending = c[i] - 1; } return c[0]; } }

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

stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:29:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |  for(int i = 0; i < u.size(); i++)
      |                 ~~^~~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:59:20: 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 < c.size() - 1; i++)
      |                  ~~^~~~~~~~~~~~~~
#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...