Submission #774085

# Submission time Handle Problem Language Result Execution time Memory
774085 2023-07-05T11:55:25 Z loctildore Friend (IOI14_friend) C++14
Compilation error
0 ms 0 KB
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
// trans rights
#define ll long long
#define f first
#define s second
#define endl '\n'
#define all(x) begin(x), end(x)
#define MOD 1000000009

vector<int> grph[1069];
int con[1069];
bool done[1069];

int dp[1069][2];

int ans = 0;

int dfs1(int x) {
	if (done[x]) return 0;
	done[x] = true;
	int rtn = con[x];
	for (auto i : grph[x]) rtn = max(rtn, dfs1(i));
	return rtn;
}

int dfs2(int x, int lst, int chs = 1) {
	if (dp[x][chs]) return dp[x][chs]; //only 0 at the edges anyway
	if (!chs) {
		for (auto i : grph[x]) if (i != lst) dp[x][chs] += dfs2(i, x, 1);
		return dp[x][chs];
	}
	dp[x][chs] += con[x];
	for (auto i : grph[x]) if (i != lst) dp[x][chs] += dfs2(i, x, 0);
	return dp[x][chs] = max(dp[x][chs], dp[x][0]);
}

int findSample(int n, int confidence[], int host[], int protocol[]){
	if (n <= 10) {
		for (int i = 1; i < n; i++) {
			if (protocol[i] != 0) {
				for (auto t : grph[host[i]]) {
					grph[i].push_back(t);
					grph[t].push_back(i);
				}
			}
			if (protocol[i] != 1) {
				grph[i].push_back(host[i]);
				grph[host[i]].push_back(i);
			}
		}
		for (int bst = 0; bst < (1 << n); bst++) {
			int cur = 0;
			bool flag = true;
			for (int i = 0; i < n; i++) {
				if (!(bst & (1 << i))) continue;
				for (auto j : grph[i]) if (bst & (1 << j)) {
					flag = false;
				}
				cur += confidence[i];
			}
			if (flag) ans = max(ans, cur);
		}
		return ans;
	}

	bool flag = true;
	for (int i = 1; i < n; i++) if (protocol[i] != 1) flag = false;
	if (flag) {
		for (int i = 0; i < n; i++) {
			ans += confidence[i];
		}
		return ans;
	}

	for (int i = 0; i < n; i++) con[i] = confidence[i];

	flag = true;
	for (int i = 1; i < n; i++) if (protocol[i] != 2) flag = false;
	if (flag) {
		for (int i = 1; i < n; i++) grph[i].push_back(host[i]);
		for (int i = 1; i < n; i++) grph[host[i]].push_back(i);
		for (int i = 0; i < n; i++) {
			if (!dfs[i][1]) ans += dfs1(i);
		}
		return ans;
	}

	flag = true;
	for (int i = 1; i < n; i++) if (protocol[i] != 0) flag = false;
	if (flag) {
		for (int i = 1; i < n; i++) grph[i].push_back(host[i]);
		for (int i = 1; i < n; i++) grph[host[i]].push_back(i);
		for (int i = 0; i < n; i++) {
			ans += dfs2(i, -1);
		}
		return ans;
	}

	return ans;
}

Compilation message

friend.cpp: In function 'int findSample(int, int*, int*, int*)':
friend.cpp:85:9: error: 'dfs' was not declared in this scope; did you mean 'dfs2'?
   85 |    if (!dfs[i][1]) ans += dfs1(i);
      |         ^~~
      |         dfs2