Submission #1055612

#TimeUsernameProblemLanguageResultExecution timeMemory
1055612TrentStations (IOI20_stations)C++17
8 / 100
533 ms940 KiB
#include "stations.h"
#include "bits/stdc++.h"
using namespace std;
#define forR(i, x) for(int i = 0; i < (x); ++i)
#define REP(i, a, b) for(int i = (a); i < (b); ++i)
#define all(x) x.begin(), x.end()
typedef vector<int> vi;
typedef vector<bool> vb;
typedef long long ll;
typedef vector<ll> vll;
typedef set<int> si;
typedef vector<vi> vvi;

std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
	vi ret(n);
	forR(i, n) ret[i] = i;
	return ret;
}

int find_next_station(int s, int t, std::vector<int> c) {
	++s, ++t;
	while(t > 0) {
		if(t / 2 == s) return t - 1;
		t /= 2;
	}
	return s / 2 - 1;
}
#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...