/* In the name of Allah */
#include<bits/stdc++.h>
#include<Joi.h>
using namespace std;
const int N = 1e4 + 5;
vector<int> adj[N], V;
bool mark[N];
void dfs(int u) {
sort(adj[u].begin(), adj[u].end());
mark[u] = true, V.push_back(u);
for (auto v: adj[u])
if (!mark[v])
dfs(v);
}
void Joi(int n, int m, int a[], int b[], long long x, int t) {
for (int i = 0; i < m; i++) {
adj[a[i]].push_back(b[i]);
adj[b[i]].push_back(a[i]);
}
dfs(0);
for (int i = 0; i < n; i++)
MessageBoard(V[i], i < 60? x >> i & 1: 0);
}
/* In the name of Allah */
#include<bits/stdc++.h>
#include<Ioi.h>
using namespace std;
const int N = 1e4 + 5;
vector<int> adj[N], V;
long long answer;
bool mark[N];
bool go(int u) {
mark[u] = true;
if (!u)
return true;
for (auto v: adj[u])
if (!mark[v] && go(v)) {
V.push_back(v);
return true;
}
return false;
}
void dfs(int u, bool b) {
static int id = 0;
mark[u] = true;
if (id >= 60)
return;
answer |= b << id++;
sort(adj[u].begin(), adj[u].end());
for (auto v: adj[u])
if (!mark[v])
dfs(v, Move(v));
}
long long Ioi(int n, int m, int a[], int b[], int p, int v, int t) {
for (int i = 0; i < m; i++) {
adj[a[i]].push_back(b[i]);
adj[b[i]].push_back(a[i]);
}
go(p), reverse(V.begin(), V.end());
for (auto u: V)
v = Move(p = u);
memset(mark, false, sizeof mark), dfs(p, v);
return answer;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
1376 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
4608 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
1300 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
4628 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
41 ms |
4720 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |