#include "longesttrip.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 260;
vector < int > adj[maxn];
int used[maxn], edge[maxn][maxn];
int n;
void dfs(int v, int c)
{
used[v] = c;
for (int u = 0; u < n; u ++)
{
if (edge[v][u] != 1)
continue;
if (!used[u])
dfs(u, c);
}
}
vector < int > construct(int v, bool done)
{
for (int i = 0; i < n; i ++)
used[i] = 0;
int mx = -1;
for (int u = 0; u < n; u ++)
{
if (edge[v][u] == 1)
{
edge[v][u] = 2;
mx = u;
edge[u][v] = 2;
}
}
if (mx == -1)
{
vector < int > vec;
vec.push_back(v);
return vec;
}
bool split = false;
///if (!done)
{
dfs(mx, 1);
for (int u = 0; u < n; u ++)
{
if (edge[v][u] == 2 && used[u] == 0)
{
split = true;
}
if (edge[v][u] == 2)
{
edge[v][u] = 1;
edge[u][v] = 1;
}
}
}
if (done && split)
{
cout << "holy shit" << endl;
exit(0);
}
if (!split)
{
for (int u = 0; u < n; u ++)
{
if (edge[v][u])
{
edge[v][u] = edge[u][v] = 0;
}
}
vector < int > res = construct(mx, true);
res.push_back(v);
return res;
}
int dx = -1;
for (int u = 0; u < n; u ++)
{
if (edge[v][u])
{
edge[v][u] = edge[u][v] = 0;
if (u != mx)
dx = u;
}
}
cout << "split " << v << " " << mx << " " << dx << endl;
vector < int > res = construct(mx, true);
res.push_back(v);
vector < int > bk = construct(dx, true);
reverse(bk.begin(), bk.end());
for (int u : bk)
res.push_back(u);
return res;
}
int deg[maxn];
vector<int> longest_trip(int N, int D)
{
n = N;
if (n == 0)
return {};
if (D == 3)
{
vector < int > r;
for (int i = 0; i < N; i ++)
r.push_back(i);
return r;
}
for (int i = 0; i < N; i ++)
for (int j = 0; j < N; j ++)
{
edge[i][j] = edge[j][i] = 0;
}
for (int i = 0; i < N; i ++)
used[i] = 0, deg[i] = 0;
for (int i = 0; i < N; i ++)
for (int j = i + 1; j < N; j ++)
{
vector < int > a, b;
a.push_back(i);
b.push_back(j);
if (are_connected(a, b))
{
adj[i].push_back(j);
adj[j].push_back(i);
edge[i][j] = 1;
edge[j][i] = 1;
}
}
int cp = 0;
for (int i = 0; i < N; i ++)
{
if (!used[i])
dfs(i, ++ cp);
}
if (cp == 2)
{
vector < int > a, b;
for (int i = 0; i < N; i ++)
if (used[i] == 1)
a.push_back(i);
else
b.push_back(i);
if (a.size() > b.size())
return a;
return b;
}
vector < int > res;
int tk = 0;
while(tk < N && deg[tk] != 1)
tk ++;
if (tk == N)
tk = 0;
for (int step = 0; step < N; step ++)
{
res.push_back(tk);
int nxt = -1;
for (int u = 0; u < N; u ++)
{
if (edge[tk][u])
{
deg[u] --;
if (deg[u] == 1 || nxt == -1)
nxt = u;
deg[tk] --;
edge[tk][u] = edge[u][tk] = 0;
}
}
tk = nxt;
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
208 KB |
Output is correct |
2 |
Correct |
208 ms |
892 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
208 KB |
Output is correct |
2 |
Correct |
1 ms |
208 KB |
Output is correct |
3 |
Correct |
1 ms |
208 KB |
Output is correct |
4 |
Correct |
0 ms |
208 KB |
Output is correct |
5 |
Correct |
0 ms |
208 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
332 KB |
Output is correct |
2 |
Correct |
33 ms |
348 KB |
Output is correct |
3 |
Correct |
149 ms |
580 KB |
Output is correct |
4 |
Correct |
412 ms |
988 KB |
Output is correct |
5 |
Correct |
816 ms |
1640 KB |
Output is correct |
6 |
Incorrect |
0 ms |
208 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
336 KB |
Output is correct |
2 |
Correct |
35 ms |
356 KB |
Output is correct |
3 |
Correct |
153 ms |
672 KB |
Output is correct |
4 |
Correct |
393 ms |
992 KB |
Output is correct |
5 |
Correct |
886 ms |
1644 KB |
Output is correct |
6 |
Incorrect |
1 ms |
208 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
332 KB |
Output is correct |
2 |
Correct |
33 ms |
368 KB |
Output is correct |
3 |
Partially correct |
174 ms |
544 KB |
Output is partially correct |
4 |
Partially correct |
455 ms |
972 KB |
Output is partially correct |
5 |
Partially correct |
887 ms |
1640 KB |
Output is partially correct |
6 |
Incorrect |
1 ms |
208 KB |
Incorrect |
7 |
Halted |
0 ms |
0 KB |
- |