Submission #372841

#TimeUsernameProblemLanguageResultExecution timeMemory
372841OzyStations (IOI20_stations)C++17
0 / 100
3036 ms2097156 KiB
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for (int i = (a); i <= (b); i++)
#define repa(i,a,b) for (int i = (a); i >= (b); i--)
#define lli int
#define debug(a) cout << #a << ' ' << a << endl

lli cont;
vector<lli> hijos[1002],res;

void llena(lli pos, lli padre, lli pp) {

    if (pp == 1) res[pos] = cont++;

    for (auto h : hijos[pos]) {
        if (h == padre) continue;

        if (pp == 1) llena(h,pos,0);
        else llena(h,pos,1);
    }

    if (pp == 0) res[pos] = cont++;

}

std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {

	res.resize(n);
	rep(i,0,n-2) {
        hijos[u[i]].push_back(v[i]);
        hijos[v[i]].push_back(u[i]);
	}
	cont = 0;
	llena(0,-1,1);

	return res;
}

int find_next_station(int s, int t, std::vector<int> c) {
	int ini,fin;

	ini = c[0];
	fin = c[c.size()-1];

	if (ini > s) {
        if (t < s) return fin;
        if (t > fin) return fin;
        for (auto h : c) {
            if (t <= h && t >= s) return h;
        }

	}
	else {
        if (t > s) return ini;
        if (t < ini) return ini;
        for (auto h : c) {
            if (t >= h && t <= s) return h;
        }
	}

}

Compilation message (stderr)

stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:62:1: warning: control reaches end of non-void function [-Wreturn-type]
   62 | }
      | ^
#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...