#include <bits/stdc++.h>
#include "stations.h"
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define N 100005
#define PB push_back
#define sz(x) int(x.size())
#define F first
#define M ll(1e9 + 7)
#define S second
#define all(x) x.begin(), x.end()
#define endl '\n'
//#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")
using namespace std;
//using namespace __gnu_pbds;
typedef long long ll;
//typedef tree <int, null_type, less_equal <int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
ll mlt(ll x, ll y) {return (x * y) % M;}
ll sm(ll x, ll y) {return (x + y) % M;}
vector <int> g[N], a;
int id = 0;
void dfs(int v, int p)
{
a[v] = id++;
for (auto it : g[v])
{
if (it == p) continue;
dfs(it, v);
}
}
vector<int> label(int n, int k, vector<int> u, vector<int> v)
{
a.resize(n);
for (int i = 0; i < n - 1; i++)
{
g[u[i]].PB(v[i]);
g[v[i]].PB(u[i]);
}
for (int i = 0; i < n; i++)
if (sz(g[i]) == 1) {dfs(i, -1); break;}
for (int i = 0; i < n; i++) g[i].clear();
return a;
}
int find_next_station(int s, int t, vector<int> c)
{
if (sz(c) == 1) return c[0];
if (s < t) return max(c[0], c[1]);
return min(c[0], c[1]);
}
//int main()
//{
// iostream::sync_with_stdio(0); ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//
// //freopen("fcolor.in", "r", stdin); freopen("fcolor.out", "w", stdout);
//
//
//}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
2808 KB |
Invalid labels (values out of range). scenario=2, k=1000, vertex=69, label=1001 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
2688 KB |
Invalid labels (values out of range). scenario=1, k=1000, vertex=0, label=1004 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
545 ms |
5728 KB |
Output is correct |
2 |
Correct |
472 ms |
5632 KB |
Output is correct |
3 |
Correct |
875 ms |
5504 KB |
Output is correct |
4 |
Correct |
661 ms |
5588 KB |
Output is correct |
5 |
Correct |
573 ms |
5504 KB |
Output is correct |
6 |
Correct |
466 ms |
5888 KB |
Output is correct |
7 |
Correct |
449 ms |
5744 KB |
Output is correct |
8 |
Correct |
5 ms |
5588 KB |
Output is correct |
9 |
Correct |
8 ms |
5504 KB |
Output is correct |
10 |
Correct |
4 ms |
5504 KB |
Output is correct |
11 |
Incorrect |
799 ms |
5504 KB |
Wrong query response. |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
918 ms |
5588 KB |
Output is correct |
2 |
Correct |
746 ms |
5588 KB |
Output is correct |
3 |
Correct |
619 ms |
5376 KB |
Output is correct |
4 |
Correct |
5 ms |
5592 KB |
Output is correct |
5 |
Correct |
7 ms |
5588 KB |
Output is correct |
6 |
Correct |
4 ms |
5584 KB |
Output is correct |
7 |
Incorrect |
628 ms |
5504 KB |
Wrong query response. |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
608 ms |
5632 KB |
Partially correct |
2 |
Partially correct |
480 ms |
5744 KB |
Partially correct |
3 |
Correct |
938 ms |
5592 KB |
Output is correct |
4 |
Correct |
824 ms |
5724 KB |
Output is correct |
5 |
Correct |
594 ms |
5732 KB |
Output is correct |
6 |
Partially correct |
533 ms |
5856 KB |
Partially correct |
7 |
Correct |
383 ms |
5752 KB |
Output is correct |
8 |
Correct |
5 ms |
5596 KB |
Output is correct |
9 |
Correct |
8 ms |
5376 KB |
Output is correct |
10 |
Correct |
4 ms |
5504 KB |
Output is correct |
11 |
Incorrect |
659 ms |
5516 KB |
Wrong query response. |
12 |
Halted |
0 ms |
0 KB |
- |