#include "bits/stdc++.h"
#include "longesttrip.h"
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); //mt19937_64 for ll
int rnd(int l, int r) {
return l + rng() % (r - l + 1);
}
vector<int> longest_trip(int n, int D) {
vector<int> v = {0};
vector<bool> vis(n, false); vis[0] = true;
while ((int)v.size() < n) {
vector<bool> vis2 = vis;
while (true) {
int x = rnd(1, n - 1);
while (!vis2[x]) x = rnd(1, n - 1);
if (are_connected({v.back()}, {x})) {
vis[x] = true;
v.push_back(x);
break;
}
vis2[x] = true;
}
}
return v;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3045 ms |
344 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3042 ms |
356 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3062 ms |
344 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3022 ms |
344 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3024 ms |
344 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |