# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1081852 |
2024-08-30T12:03:05 Z |
juicy |
Ili (COI17_ili) |
C++17 |
|
0 ms |
604 KB |
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif
const int N = 10005;
int n, m;
int res[2 * N];
bitset<N> c[N];
vector<int> g[N];
void dfs(int u) {
res[u] = 0;
if (u <= m) {
for (int v : g[u]) {
if (res[v]) {
res[v] = 0;
dfs(v);
}
}
}
}
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
cin >> n >> m;
string s; cin >> s; s = '&' + s;
for (int i = 1; i <= m; ++i) {
for (int j = 0; j < 2; ++j) {
char c; int x; cin >> c >> x;
x += c == 'x' ? m : 0;
g[i].push_back(x);
}
}
memset(res, -1, sizeof(res));
for (int i = 1; i <= m; ++i) {
if (s[i] == '0') {
dfs(i);
} else if (s[i] == '1') {
res[i] = 1;
}
for (int v : g[i]) {
if (v <= m) {
c[i] |= c[v];
} else {
c[i].set(v - m);
}
}
}
for (int i = 1; i <= m; ++i) {
if (res[i]) {
for (int j = 1; j <= m; ++j) {
if (res[j] == 1) {
bool cant = 1;
for (int v : g[j]) {
if (v <= m) {
cant &= !res[v];
} else {
cant &= !res[v] || c[i].test(v - m);
}
}
if (cant) {
res[i] = 1;
break;
}
}
}
}
}
for (int i = 1; i <= m; ++i) {
if (~res[i]) {
cout << res[i];
} else {
cout << "?";
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
604 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
604 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
604 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |