Submission #723541

#TimeUsernameProblemLanguageResultExecution timeMemory
723541t6twotwoVillage (BOI20_village)C++17
50 / 100
115 ms23760 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<vector<int>> adj(n); for (int i = 1; i < n; i++) { int x; cin >> x; x--; int y; cin >> y; y--; adj[x].push_back(y); adj[y].push_back(x); } vector<int> amin(n), amax(n); iota(amin.begin(), amin.end(), 0); iota(amax.begin(), amax.end(), 0); int ansmin = 0; int64_t ansmax = 0; auto dfs = [&](auto dfs, int x, int p) -> bool { vector<int> b; for (int y : adj[x]) { if (y != p) { if (dfs(dfs, y, x)) { b.push_back(y); } } } if (b.empty()) { return 1; } ansmin += b.size() * 2; if (b.size() % 2 == 1) { swap(amin[x], amin[b[0]]); for (int i = 1; i < b.size(); i += 2) { swap(amin[b[i]], amin[b[i + 1]]); } } else { swap(amin[x], amin[b[0]]); swap(amin[x], amin[b[1]]); for (int i = 2; i < b.size(); i += 2) { swap(amin[b[i]], amin[b[i + 1]]); } } return 0; }; if (dfs(dfs, 0, -1)) { swap(amin[0], amin[adj[0][0]]); ansmin += 2; } vector<int> sz(n); auto init = [&](auto init, int x, int p) -> void { sz[x] = 1; for (int y : adj[x]) { if (y != p) { init(init, y, x); sz[x] += sz[y]; } } ansmax += 2 * min(sz[x], n - sz[x]); }; auto find = [&](auto find, int x, int p, int s) -> int { for (int y : adj[x]) { if (y != p && sz[y] * 2 > s) { return find(find, y, x, s); } } return x; }; init(init, 0, -1); int c = find(find, 0, -1, n); vector<int> b; auto dfs2 = [&](auto dfs2, int x, int p) -> void { b.push_back(x); for (int y : adj[x]) { if (y != p) { dfs2(dfs2, y, x); } } }; dfs2(dfs2, 0, -1); for (int i = 0; i < n; i++) { swap(amax[b[i]], amax[b[(i + n / 2) % n]]); } cout << ansmin << " " << ansmax << "\n"; for (int i = 0; i < n; i++) { cout << amin[i] + 1 << " \n"[i == n - 1]; } for (int i = 0; i < n; i++) { cout << amax[i] + 1 << " \n"[i == n - 1]; } return 6/22; }

Compilation message (stderr)

Village.cpp: In lambda function:
Village.cpp:35:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |             for (int i = 1; i < b.size(); i += 2) {
      |                             ~~^~~~~~~~~~
Village.cpp:41:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |             for (int i = 2; i < b.size(); i += 2) {
      |                             ~~^~~~~~~~~~
Village.cpp: In function 'int main()':
Village.cpp:71:9: warning: unused variable 'c' [-Wunused-variable]
   71 |     int c = find(find, 0, -1, n);
      |         ^
Village.cpp: In instantiation of 'main()::<lambda(auto:23, int, int)> [with auto:23 = main()::<lambda(auto:23, int, int)>]':
Village.cpp:47:23:   required from here
Village.cpp:35:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |             for (int i = 1; i < b.size(); i += 2) {
      |                             ~~^~~~~~~~~~
Village.cpp:41:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |             for (int i = 2; i < b.size(); i += 2) {
      |                             ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...