| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1292705 | lucasdmy | 기지국 (IOI20_stations) | C++20 | 0 ms | 0 KiB |
#include "stations.h"
#include <vector>
vector<int> label(int n, int k, std::vector<int>u, std::vector<int>v){
std::vector<int>labels(n);
for(int i=0;i<n;i++){
labels[i]=0;
}
return labels;
}
int find_next_station(int s, int t, std::vector<int>c){
return c[0];
}
