#include <bits/stdc++.h>
#include "Joi.h"
using namespace std;
void Joi(int N, int M, int A[], int B[], long long X, int T){
for (int i = 0; i < 60; i++)
if ((1ll << i) & X)
MessageBoard(i, 1);
else
MessageBoard(i, 0);
for (int i = 60; i < N; i++)
MessageBoard(i, 0);
}
#include <bits/stdc++.h>
#include "Ioi.h"
using namespace std;
const int maxn = 1e5 + 100;
int a[maxn];
vector<int> e[maxn];
bool vis[maxn];
void dfs(int v, int val){
vis[v] = 1;
a[v] = val;
for (auto i : e[v])
if (!vis[i]){
dfs(i, Move(i));
Move(v);
}
}
long long Ioi(int N, int M, int A[], int B[], int P, int V, int T){
dfs(P, V);
long long ret = 0;
for (int i = 0; i < 60; i++)
ret += (1ll << i) * a[i];
return ret;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
7576 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
19 ms |
7576 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
7576 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
28 ms |
7576 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
22 ms |
7576 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |