#include <bits/stdc++.h>
using namespace std;
template <typename A, typename B>
string to_string(pair<A, B> p);
template <typename A, typename B, typename C>
string to_string(tuple<A, B, C> p);
template <typename A, typename B, typename C, typename D>
string to_string(tuple<A, B, C, D> p);
string to_string(const string& s) {
return '"' + s + '"';
}
string to_string(const char* s) {
return to_string((string) s);
}
string to_string(bool b) {
return (b ? "true" : "false");
}
string to_string(vector<bool> v) {
bool first = true;
string res = "{";
for (int i = 0; i < static_cast<int>(v.size()); i++) {
if (!first) {
res += ", ";
}
first = false;
res += to_string(v[i]);
}
res += "}";
return res;
}
template <size_t N>
string to_string(bitset<N> v) {
string res = "";
for (size_t i = 0; i < N; i++) {
res += static_cast<char>('0' + v[i]);
}
return res;
}
template <typename A>
string to_string(A v) {
bool first = true;
string res = "{";
for (const auto &x : v) {
if (!first) {
res += ", ";
}
first = false;
res += to_string(x);
}
res += "}";
return res;
}
template <typename A, typename B>
string to_string(pair<A, B> p) {
return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";
}
template <typename A, typename B, typename C>
string to_string(tuple<A, B, C> p) {
return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ")";
}
template <typename A, typename B, typename C, typename D>
string to_string(tuple<A, B, C, D> p) {
return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ", " + to_string(get<3>(p)) + ")";
}
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
cerr << " " << to_string(H);
debug_out(T...);
}
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__);
vector<int> who_wins(vector<int> owned, vector<int> z, vector<int> From, vector<int> To) {
int n = owned.size();
int m = To.size();
vector<vector<int>> g(n);
vector<vector<int>> Rev(n);
for (int i = 0; i < m; i++) {
g[From[i]].push_back(To[i]);
Rev[To[i]].push_back(From[i]);
}
vector<int> ret(n, -1);
{
vector<int> was(n);
vector<int> alive(n);
function<void(int)> dfs = [&] (int v) {
was[v] = 1;
for (int i : g[v]) {
if (alive[i] && !was[i]) {
dfs(i);
}
}
};
auto winstate = [&](vector<int> keep, vector<int> nodes) {
fill(alive.begin(), alive.end(), 0);
for (int i : keep) {
alive[i] = 1;
}
vector<vector<int>> r(n);
for (int i = 0; i < n; i++) {
if (!alive[i]) {
continue;
}
dfs(i);
r[i] = was;
fill(was.begin(), was.end(), 0);
}
vector<bool> win(n);
for (int i : nodes) {
for (int j : g[i]) {
if (alive[j] && r[j][i] == 1) {
win[i] = true;
}
}
}
return win;
};
auto get_win = [&](vector<int> keep, vector<bool> &win) {
while (true) {
bool change = false;
for (int i : keep) {
if (win[i]) {
continue;
}
for (int j : g[i]) {
if (win[j]) {
win[i] = true;
change = true;
}
}
}
if (!change) {
break;
}
}
};
for (int player = 0; player < 2; player++) {
vector<int> keep;
vector<int> nodes;
for (int i = 0; i < n; i++) {
if (owned[i] != player) {
continue;
}
if (player == 1) {
keep.push_back(i);
if (z[i]) {
nodes.push_back(i);
}
} else {
if (!z[i]) {
keep.push_back(i);
nodes.push_back(i);
}
}
}
vector<bool> win = winstate(keep, nodes);
if (player == 0) {
keep.clear();
for (int i = 0; i < n; i++) {
if (owned[i] == player) {
keep.push_back(i);
}
}
}
get_win(keep, win);
for (int i = 0; i < n; i++) {
if (win[i]) {
ret[i] = player;
}
}
}
}
while (true) {
vector<bool> Ze(n);
function<void(int)> dfs = [&](int v) {
for (int i : Rev[v]) {
if (ret[i] != -1) {
continue;
}
if (Ze[i] || owned[i] == 0) {
continue;
}
Ze[i] = true;
dfs(i);
}
};
for (int i = 0; i < n; i++) {
if (!Ze[i] && z[i] && ret[i] == -1) {
dfs(i);
}
}
vector<bool> removed(n);
vector<int> que;
vector<int> deg(n);
for (int i = 0; i < n; i++) {
if (ret[i] != -1) {
continue;
}
for (int j : g[i]) {
if (ret[j] == -1) {
deg[i]++;
}
}
}
for (int i = 0; i < n; i++) {
if (ret[i] != -1) {
continue;
}
if (Ze[i] || z[i]) {
removed[i] = true;
que.push_back(i);
}
}
for (int b = 0; b < (int) que.size(); b++) {
int v = que[b];
for (int i : Rev[v]) {
if (ret[i] != -1) {
continue;
}
if (removed[i]) {
continue;
}
deg[i]--;
if (owned[i] == 1 || deg[i] == 0) {
que.push_back(i);
removed[i] = 1;
}
}
}
bool change = false;
for (int i = 0; i < n; i++) {
if (ret[i] == -1 && !removed[i]) {
ret[i] = 0;
change = true;
}
}
if (!change) {
break;
}
}
for (int i = 0; i < n; i++) {
if (ret[i] == -1) {
ret[i] = 1;
}
}
return ret;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
49828 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
248 ms |
100016 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
7380 KB |
Output is correct |
2 |
Correct |
183 ms |
99460 KB |
Output is correct |
3 |
Correct |
231 ms |
96724 KB |
Output is correct |
4 |
Correct |
61 ms |
50744 KB |
Output is correct |
5 |
Correct |
441 ms |
97704 KB |
Output is correct |
6 |
Correct |
371 ms |
95996 KB |
Output is correct |
7 |
Correct |
367 ms |
92216 KB |
Output is correct |
8 |
Correct |
180 ms |
81264 KB |
Output is correct |
9 |
Correct |
14 ms |
6484 KB |
Output is correct |
10 |
Correct |
20 ms |
23888 KB |
Output is correct |
11 |
Correct |
17 ms |
10556 KB |
Output is correct |
12 |
Correct |
21 ms |
25632 KB |
Output is correct |
13 |
Correct |
676 ms |
99800 KB |
Output is correct |
14 |
Correct |
390 ms |
99624 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
557 ms |
80424 KB |
Output is correct |
2 |
Incorrect |
978 ms |
79068 KB |
3rd lines differ - on the 4th token, expected: '1', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
49828 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |