Submission #1053745

#TimeUsernameProblemLanguageResultExecution timeMemory
1053745nightfalStations (IOI20_stations)C++17
0 / 100
1 ms432 KiB
// #include "stations.h" #include <cstdio> #include <iostream> #include <cassert> #include <map> #include <vector> #include <algorithm> using namespace std; template <typename T> void print(T elem) {cout << elem << " ";} template <typename T> void print(vector<T> &v) {for(auto elem: v) print(elem); cout << endl;}; template <typename T> void print(vector<vector<T>> &v) {for(auto elem: v) print(elem); cout << endl;}; bool subtask1(vector<vector<int>> &g) { int n = g.size(); for(auto elem: g) if (elem.size() > 2) return false; return true; } bool subtask2(vector<int> &u, vector<int> &v) { int m = u.size(); for(int i=0; i<m; i++) if (!(u[i]==i+1 && v[i]==i/2 || u[i]==i/2 && v[i]==i+1)) return false; return true; } bool subtask3(vector<vector<int>> &g) { int n=g.size(), cnt=0; for(auto elem: g) if(elem.size()>2) cnt++; if (cnt<=1) return true; return false; } void genLabels(int key, int node, vector<int> &labels, vector<vector<int>> &g) { labels[node]=key*1000+1; for(int i=2; i<1000; i++) { bool terminal = true; for(int next: g[node]) { // cout << "next:" << next << endl; if(labels[next]==-1) {labels[next] = 1000*key+i; node = next; terminal=false;} } if (terminal) return; } } std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) { std::vector<int> labels(n,-1); vector<vector<int>> g(n); for (int i=0; i<n-1; i++) { g[u[i]].push_back(v[i]); g[v[i]].push_back(u[i]); } // print(g); if (false && subtask1(g)) { int node = 0; for (int i=0; i<n; i++) if(g[i].size()==1) node = i; int prev = node; for (int i=0; i<n; i++) { labels[node] = i; for(int next: g[node]) if(labels[next]== -1) {node = next;} } } if (false && subtask2(u,v)) { for(int i=0; i<n; i++) labels[i] = i; } if (subtask3(g)) { int root = 0; for(int i=0; i<n; i++) if(g[i].size() > 2) {root = i; break;} labels[root] = 0; // print(labels); // print(g); for(int i=0; i<g[root].size(); i++) { int child = g[root][i]; genLabels(i, child, labels, g); } } print(labels); return labels; } bool ancestor(int s, int t) { if (s==0) return true; while (t) { if (s==t) return true; t = (t-1)>>1; } return false; } int find_next_station(int s, int t, std::vector<int> c) { int subtask = 3; if (subtask==1) { for(int next: c) if (s<t && s<next) return next; else if (s>t && s>next) return next; } else if (subtask==2) { if (ancestor(2*s+1,t)) return 2*s+1; else if (ancestor(2*s+2,t)) return 2*s+2; else return (s-1)/2; } else if (subtask==3) { if (s==0) return (t/1000)*1000+1; if (s/1000 == t/1000) { if (s<t) return s+1; else return s-1; } else { if (s%1000==1) return 0; else return s-1; } } }

Compilation message (stderr)

stations.cpp: In function 'bool subtask1(std::vector<std::vector<int> >&)':
stations.cpp:16:9: warning: unused variable 'n' [-Wunused-variable]
   16 |     int n = g.size();
      |         ^
stations.cpp: In function 'bool subtask2(std::vector<int>&, std::vector<int>&)':
stations.cpp:24:25: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   24 |         if (!(u[i]==i+1 && v[i]==i/2 || u[i]==i/2 && v[i]==i+1))
stations.cpp: In function 'bool subtask3(std::vector<std::vector<int> >&)':
stations.cpp:29:9: warning: unused variable 'n' [-Wunused-variable]
   29 |     int n=g.size(), cnt=0;
      |         ^
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:58:13: warning: unused variable 'prev' [-Wunused-variable]
   58 |         int prev = node;
      |             ^~~~
stations.cpp:71:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   71 |         for(int i=0; i<n; i++)
      |         ^~~
stations.cpp:73:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   73 |             labels[root] = 0;
      |             ^~~~~~
stations.cpp:76:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   76 |         for(int i=0; i<g[root].size(); i++) {
      |                      ~^~~~~~~~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:115:1: warning: control reaches end of non-void function [-Wreturn-type]
  115 | }
      | ^
#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...