이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <ctime>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <limits>
#include <iomanip>
#include <unordered_set>
#include <unordered_map>
#include <random>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef ll itn;
#define ff first
#define ss second
ll n;
ll cnt[1007];
vector<int>g[1007];
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
vector<int> lbl(n);
lbl[0] = 1;
for (int i = 1; i < n; i++) {
if (i % 2 == 0) {
lbl[i] = i;
}
else {
lbl[i] = i + 2;
}
}
return lbl;
}
int find_next_station(int s, int t, vector<int> c) {
if (c.size() == 1)return c[0];
if (s % 2 == 0) {
return s - 1;
}
if (t == s + 1)return t;
if (t > s)return s + 2;
else return s - 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |