Submission #1064824

#TimeUsernameProblemLanguageResultExecution timeMemory
1064824OspleiStations (IOI20_stations)C++17
0 / 100
1058 ms2988 KiB
#include "stations.h" #include <bits/stdc++.h> using namespace std; #define pb push_back bool bfs (int nodo, int obj){ bool visto[1000005]; queue <int> q; for (int i = 0; i < 1000005; i++) visto[i] = false; q.push(nodo); while (!q.empty()){ int act = q.front(); if (act == obj) return true; q.pop(); if (visto[act] == true) continue; visto[act] = true; if (act != 0) q.push((act - 1) / 2); q.push((act * 2) + 1); q.push((act * 2) + 2); } return false; } vector <int> label(int n, int k, vector <int> u, vector <int> v) { for (int i = 0; i < u.size(); i++) { int a = u[i], b = v[i]; } vector <int> labels; for (int i = 0; i < n; i++) labels.pb(i); return labels; } int find_next_station(int s, int t, vector <int> c) { if (c.size() == 1) return c[0]; for (int i = 0; i < c.size(); i++) { if (bfs(c[i], t) == true) return c[i]; } }

Compilation message (stderr)

stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:35:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |   for (int i = 0; i < u.size(); i++) {
      |                   ~~^~~~~~~~~~
stations.cpp:36:9: warning: unused variable 'a' [-Wunused-variable]
   36 |     int a = u[i], b = v[i];
      |         ^
stations.cpp:36:19: warning: unused variable 'b' [-Wunused-variable]
   36 |     int a = u[i], b = v[i];
      |                   ^
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:51:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   51 |   for (int i = 0; i < c.size(); i++) {
      |                   ~~^~~~~~~~~~
stations.cpp:55:1: warning: control reaches end of non-void function [-Wreturn-type]
   55 | }
      | ^
#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...