Submission #1067732

# Submission time Handle Problem Language Result Execution time Memory
1067732 2024-08-21T02:31:52 Z sleepntsheep Torrent (COI16_torrent) C++17
Compilation error
0 ms 0 KB
#include <cstdio>
#include <climits>
#include <vector>

using namespace std;
template <typename T>
using ve = vector<T>;

#define N 1005

int ans = INT_MAX;
int n, a, b, cb[N], dp[N], par[N];
ve<int> g[N], ab;

void dfs(int u, int p) {
	par[u] = p;
	for (auto v : g[u]) if (v != p) dfs(v, u);
}

void efs(int u, int p) {
	dp[u] = 0;

	ve<int> chdp;
	for (auto v : g[u]) if (v != p) {
		efs(v, u);
		chdp.push_back(dp[v]);
	}

	sort(chdp.begin(), chdp.end(), greater<>());

	for (int i = 0; i < (int)chdp.size(); ++i) 
		dp[u] = max(dp[u], chdp[i] + i + 1);

}

int main() {
	scanf("%d%d%d", &n, &a, &b);
	for (int u, v, i = 1; i < n; ++i) scanf("%d%d", &u, &v), g[u].push_back(v), g[v].push_back(u);

	dfs(a, -1);

	for (int c = par[b]; c != a; c = par[c]) ab.push_back(c);
	reverse(ab.begin(), ab.end());

	for (int c = b; c != a; c = par[c]) {
		g[c].erase(find(g[c].begin(), g[c].end(), par[c]));
		g[par[c]].erase(find(g[par[c]].begin(), g[par[c]].end(), c));
		efs(a, -1);
		efs(b, -1);
		ans = min(ans, max(dp[a], dp[b]));
		g[c].push_back(par[c]);
		g[par[c]].push_back(c);
	}

	printf("%d\n", ans);
	return 0;
}

Compilation message

torrent.cpp: In function 'void efs(int, int)':
torrent.cpp:29:33: error: 'greater' was not declared in this scope
   29 |  sort(chdp.begin(), chdp.end(), greater<>());
      |                                 ^~~~~~~
torrent.cpp:29:41: error: expected primary-expression before '>' token
   29 |  sort(chdp.begin(), chdp.end(), greater<>());
      |                                         ^
torrent.cpp:29:43: error: expected primary-expression before ')' token
   29 |  sort(chdp.begin(), chdp.end(), greater<>());
      |                                           ^
torrent.cpp:29:2: error: 'sort' was not declared in this scope; did you mean 'short'?
   29 |  sort(chdp.begin(), chdp.end(), greater<>());
      |  ^~~~
      |  short
torrent.cpp: In function 'int main()':
torrent.cpp:43:2: error: 'reverse' was not declared in this scope
   43 |  reverse(ab.begin(), ab.end());
      |  ^~~~~~~
torrent.cpp:46:14: error: 'find' was not declared in this scope
   46 |   g[c].erase(find(g[c].begin(), g[c].end(), par[c]));
      |              ^~~~
torrent.cpp:37:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   37 |  scanf("%d%d%d", &n, &a, &b);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~~~
torrent.cpp:38:41: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   38 |  for (int u, v, i = 1; i < n; ++i) scanf("%d%d", &u, &v), g[u].push_back(v), g[v].push_back(u);
      |                                    ~~~~~^~~~~~~~~~~~~~~~