Submission #1081513

#TimeUsernameProblemLanguageResultExecution timeMemory
1081513GrindMachineStations (IOI20_stations)C++17
52.32 / 100
644 ms1272 KiB
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; #define pb push_back #define endl '\n' #define conts continue #define ff first #define ss second #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define sz(a) (int)a.size() #define rep(i,n) for(int i = 0; i < n; ++i) #define rep1(i,n) for(int i = 1; i <= n; ++i) #define rev(i,s,e) for(int i = s; i >= e; --i) #define trav(i,a) for(auto &i : a) template<typename T> void amin(T &x, T y){ x = min(x,y); } template<typename T> void amax(T &x, T y){ x = max(x,y); } template<typename A,typename B> string to_string(pair<A,B> p); string to_string(const string &s){ return "'"+s+"'"; } string to_string(const char* s){ return to_string((string)s); } string to_string(bool b){ return b?"true":"false"; } template<typename A> string to_string(A v){ string res = "{"; trav(x,v){ res += to_string(x)+","; } if(res.back() == ',') res.pop_back(); res += "}"; return res; } template<typename A,typename B> string to_string(pair<A,B> p){ return "("+to_string(p.ff)+","+to_string(p.ss)+")"; } #define debug(x) cout << "[" << #x << "]: "; cout << to_string(x) << endl const int MOD = 1e9 + 7; const int N = 1e5 + 5; const int inf1 = 1e9 + 5; const ll inf2 = (ll)1e18 + 5; #include "stations.h" std::vector<int> label(int n, int k, std::vector<int> U, std::vector<int> V) { vector<vector<int>> adj(n); rep(i,n-1){ int u = U[i], v = V[i]; adj[u].pb(v), adj[v].pb(u); } vector<int> tin(n), tout(n); int timer = 0; auto dfs1 = [&](int u, int p, auto &&dfs1) -> void{ tin[u] = timer++; trav(v,adj[u]){ if(v == p) conts; dfs1(v,u,dfs1); } tout[u] = timer-1; }; dfs1(0,-1,dfs1); vector<int> ans(n); rep(i,n) ans[i] = tin[i]*1000+tout[i]; // debug(ans); return ans; // std::vector<int> labels(n); // for (int i = 0; i < n; i++) { // labels[i] = i; // } // return labels; } int find_next_station(int s, int t, std::vector<int> c) { auto in_sub = [&](int u){ // is t in sub of u? int tin1 = u/1000, tout1 = u%1000; int tin2 = t/1000, tout2 = t%1000; return tin1 <= tin2 and tout1 >= tout2; }; if(in_sub(s)){ rep(i,sz(c)){ if(c[i] < s) conts; if(in_sub(c[i])){ return c[i]; } } } else{ return c[0]; } assert(0); return -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...