#include <vector>
#include <iostream>
#include <cmath>
#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;}
void makeG(vector<vector<int>> &g, vector<int> &u, vector<int> &v) {
for(int i=0; i<u.size(); i++) {
g[u[i]].push_back(v[i]);
g[v[i]].push_back(u[i]);
}
}
int labelSubDecision(int n, int k, vector<vector<int>> &g, vector<int> &u, vector<int> &v) {
if (k==pow(10,9)) return 5;
int cnt = 0;
for(int i=0; i<n; i++) if (g[i].size()>2) cnt++;
if (cnt==0) return 1;
bool subtask2 = true;
for(int i=0; i<u.size(); i++)
if (!(u[i]==i+1 && v[i]==i/2 || u[i]==i/2 && v[i]==i+1)) subtask2= false;
if (subtask2) return 2;
if (cnt==1) return 3;
}
void labelLine(int cnt, int node, vector<vector<int>> &g, vector<int> &labels) {
while(labels[node]==-1) {
labels[node] = cnt++;
for(int elem: g[node]) if (labels[elem]==-1) node = elem;
}
}
void label1(int n, vector<vector<int>> &g, vector<int> &labels) {
int node = 0;
for(int i=0; i<n; i++) if(g[i].size()==1) {node=i; break;}
labelLine(0,node,g,labels);
}
void label2(int n, vector<int> &labels) {
for(int i=0; i<n; i++) labels[i] = i+1;
}
void label3(int n, vector<vector<int>> &g, vector<int> &labels) {
int root = 0;
for(int i=0; i<n; i++) if(g[i].size() > 2) {root = i; break;}
labels[root] = 1'000;
for(int i=0; i<g[root].size(); i++) {
int child = g[root][i];
labelLine((i+1)*1'000+1,child,g,labels);
}
}
void dfs(int node, int offset, vector<vector<int>> &g, vector<int> &labels) {
for(int i=0; i<g[node].size(); i++) {
int child = g[node][i];
if(labels[child]!=-1) continue;
labels[child] = labels[node] + offset*(i+1);
dfs(child,offset/10,g,labels);
}
}
void label4(vector<vector<int>> &g, vector<int> &labels) {
labels[0] = pow(10,7);
dfs(0,pow(10,6),g,labels);
}
int dfs2(int node, int cnt, vector<vector<int>> &g, vector<int> &pre, vector<int> &post) {
if (pre[node]!=-1) return cnt;
pre[node] = cnt++;
for(int child: g[node])
cnt = dfs2(child,cnt,g,pre,post);
post[node] = cnt++;
return cnt;
}
void label5(int n, vector<vector<int>> &g, vector<int> &labels) {
vector<int> pre(n,-1), post(n,-1);
dfs2(0,0,g,pre,post);
for(int i=0; i<n; i++)
labels[i] = pre[i]*2000 + post[i];
// print(labels);
}
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
vector<vector<int>> g(n);
makeG(g,u,v);
int subtask = labelSubDecision(n,k,g,u,v);
vector<int> labels(n,-1);
switch(subtask) {
case 1: label1(n,g,labels); return labels;
case 2: label2(n,labels); return labels;
case 3: label3(n,g,labels); return labels;
case 4: label4(g,labels); return labels;
case 5: label5(n,g,labels); return labels;
}
}
int findSubDecision(int s, int t, vector<int> &c) {
// if (s >= pow(10,7)) return 4;
if (s >= 1'000 && t >= 1'000) return 5;
for(int i=0; i<c.size(); i++)
if (c[i] < s-1 || c[i] > s+1) return 2;
return 1;
}
int find1(int s, int t, vector<int> &c) {
if (c.size()==1) return c[0];
else return t<s? c[0]:c[1];
}
bool ancestor(int a, int b) {
if (a==0) return true;
while(b!=0) { if(a==b) return true; else b >>= 1; }
return false;
}
int find2(int s, int t, vector<int> &c) {
reverse(c.begin(),c.end());
for(int elem: c) if(ancestor(elem,t)) return elem;
return c[c.size()-1];
}
int find3(int s, int t, vector<int> &c) {
if (s==1'000) { for(int elem: c) if(t/1000==elem/1000) return elem; }
else if (s/1000 == t/1000 && s < t) { for(int elem: c) if(elem > s) return elem; }
else { for(int elem: c) if(elem < s) return elem; }
}
bool ancestor4(int a, int b) {
int divisor = 1;
for(int i=0; i<=7; i++) {
if (b - b % divisor == a) return true;
divisor *= 10;
}
return false;
}
int find4(int s, int t, vector<int> &c) {
reverse(c.begin(),c.end());
for(int elem: c) if(ancestor4(elem,t)) return elem;
return c[c.size()-1];
}
int find5(int s, int t, vector<int> &c) {
int preS = s/2000, postS = s%2000;
int preT = t/2000, postT = t%2000;
int m = c.size();
// cout << "s:" << s << " t:" << t<< endl;
if (preT < preS || postS < postT) return c[0];
else {
for(int i=1; i<m; i++)
if(preT < c[i]/2000) return c[i-1];
return c[m-1];
}
}
int find_next_station(int s, int t, std::vector<int> c) {
int subtask = findSubDecision(s,t,c);
switch(subtask) {
case 1: return find1(s,t,c);
case 2: return find2(s,t,c);
case 3: return find3(s,t,c);
case 4: return find4(s,t,c);
case 5: return find5(s,t,c);
}
return c[0];
}
Compilation message
stations.cpp: In function 'void makeG(std::vector<std::vector<int> >&, std::vector<int>&, std::vector<int>&)':
stations.cpp:12:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | for(int i=0; i<u.size(); i++) {
| ~^~~~~~~~~
stations.cpp: In function 'int labelSubDecision(int, int, std::vector<std::vector<int> >&, std::vector<int>&, std::vector<int>&)':
stations.cpp:24:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i=0; i<u.size(); i++)
| ~^~~~~~~~~
stations.cpp:25:19: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
25 | if (!(u[i]==i+1 && v[i]==i/2 || u[i]==i/2 && v[i]==i+1)) subtask2= false;
stations.cpp: In function 'void label3(int, std::vector<std::vector<int> >&, std::vector<int>&)':
stations.cpp:47:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | for(int i=0; i<g[root].size(); i++) {
| ~^~~~~~~~~~~~~~~
stations.cpp: In function 'void dfs(int, int, std::vector<std::vector<int> >&, std::vector<int>&)':
stations.cpp:53:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for(int i=0; i<g[node].size(); i++) {
| ~^~~~~~~~~~~~~~~
stations.cpp: In function 'int findSubDecision(int, int, std::vector<int>&)':
stations.cpp:95:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
95 | for(int i=0; i<c.size(); i++)
| ~^~~~~~~~~
stations.cpp: In function 'int labelSubDecision(int, int, std::vector<std::vector<int> >&, std::vector<int>&, std::vector<int>&)':
stations.cpp:28:1: warning: control reaches end of non-void function [-Wreturn-type]
28 | }
| ^
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:80:25: warning: control reaches end of non-void function [-Wreturn-type]
80 | vector<vector<int>> g(n);
| ^
stations.cpp: In function 'int find3(int, int, std::vector<int>&)':
stations.cpp:117:1: warning: control reaches end of non-void function [-Wreturn-type]
117 | }
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
390 ms |
684 KB |
Output is correct |
2 |
Correct |
330 ms |
684 KB |
Output is correct |
3 |
Correct |
630 ms |
684 KB |
Output is correct |
4 |
Correct |
389 ms |
684 KB |
Output is correct |
5 |
Correct |
397 ms |
684 KB |
Output is correct |
6 |
Correct |
254 ms |
684 KB |
Output is correct |
7 |
Correct |
323 ms |
684 KB |
Output is correct |
8 |
Correct |
1 ms |
768 KB |
Output is correct |
9 |
Correct |
1 ms |
768 KB |
Output is correct |
10 |
Correct |
0 ms |
768 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
310 ms |
684 KB |
Output is correct |
2 |
Correct |
344 ms |
684 KB |
Output is correct |
3 |
Correct |
564 ms |
684 KB |
Output is correct |
4 |
Correct |
426 ms |
684 KB |
Output is correct |
5 |
Correct |
373 ms |
680 KB |
Output is correct |
6 |
Correct |
300 ms |
684 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
350 ms |
684 KB |
Output is correct |
2 |
Correct |
274 ms |
684 KB |
Output is correct |
3 |
Correct |
547 ms |
776 KB |
Output is correct |
4 |
Correct |
446 ms |
684 KB |
Output is correct |
5 |
Correct |
399 ms |
684 KB |
Output is correct |
6 |
Correct |
298 ms |
684 KB |
Output is correct |
7 |
Correct |
309 ms |
684 KB |
Output is correct |
8 |
Correct |
1 ms |
768 KB |
Output is correct |
9 |
Correct |
3 ms |
776 KB |
Output is correct |
10 |
Correct |
0 ms |
776 KB |
Output is correct |
11 |
Incorrect |
424 ms |
944 KB |
Wrong query response. |
12 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
629 ms |
684 KB |
Output is correct |
2 |
Correct |
425 ms |
684 KB |
Output is correct |
3 |
Incorrect |
343 ms |
776 KB |
Wrong query response. |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
317 ms |
684 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |