이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <bits/stdc++.h>
#define fr first
#define sc second
#define mk make_pair
#define pb push_back
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 15;
vector <int> g[N], vec;
int u[N], dp[1 << 15], ans, sum;
int findSample(int n, int val[], int batya[], int type[]) {
assert(val[0] == 1);
for (int i = 1; i < n; i++) {
if (type[i] == 0) {
g[batya[i]].pb(i);
g[i].pb(batya[i]);
}
else if (type[i] == 1) {
for (auto it: g[batya[i]]) {
g[i].pb(it);
g[it].pb(i);
}
}
else {
g[batya[i]].pb(i);
g[i].pb(batya[i]);
for (auto it: g[batya[i]]) {
g[i].pb(it);
g[it].pb(i);
}
}
}
for (int mask = 0; mask < (1 << n); mask++) {
memset(u, 0, sizeof(u));
sum = 0;
for (int j = 0; j < n; j++) {
if (mask>>j&1)
u[j] = 1, sum += val[j];
}
bool fl = 1;
for (int j = 0; j < n; j++) {
if (u[j] == 0) continue;
for (auto to : g[j]) {
if (u[to])
fl = 0;
}
}
if (fl)
ans = max(ans, sum);
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |