Submission #373295

# Submission time Handle Problem Language Result Execution time Memory
373295 2021-03-04T02:56:59 Z rk42745417 Magenta (COCI21_magenta) C++17
30 / 110
111 ms 16896 KB
#include <bits/stdc++.h>
using namespace std;

#define EMT ios::sync_with_stdio(0); cin.tie(0);
using ll = int64_t;
using ull = uint64_t;
using uint = uint32_t;
using ld = long double;
const int MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;
const ll LINF = 2e18;
const double EPS = 1e-9;

const int N = 1e5 + 25, LGN = 20;
int dep[N], anc[LGN][N], pat[N], cnt[N][4];
bool vis[N];
vector<pair<int, int>> edge[N];
void dfs(int u) { 
	//cerr << u << '\n';
	for(const auto &[v, t] : edge[u]) {
		if(v != anc[0][u]) {
			anc[0][v] = u;
			dep[v] = dep[u] + 1;
			pat[v] = t;
			dfs(v);
		}
	}
}
void dfs(int u, int w) {
	vis[u] = 1;
	for(const auto &[v, t] : edge[u])
		if(!vis[v] && (t >> w & 1))
			dfs(v, w);
}
void build(int n) {
	for(int i = 1; i < LGN; i++)
		for(int j = 1; j <= n; j++)
			anc[i][j] = anc[i - 1][anc[i - 1][j]];
}
int lca(int a, int b) {
	if(dep[a] < dep[b])
		swap(a, b);
	//cout << "here " << a << ' ' << b << '\n';
	for(int i = LGN - 1, w = dep[a] - dep[b]; ~i; i--)
		if(w >> i & 1)
			a = anc[i][a];
	//cout << "here " << a <<  ' ' << b << '\n';
	if(a == b)
		return a;
	for(int i = LGN - 1; ~i; i--)
		if(anc[i][a] != anc[i][b])
			a = anc[i][a], b = anc[i][b];
	return anc[0][a];
}
inline int dis(int a, int b) { return dep[a] + dep[b] - 2 * dep[lca(a, b)]; }

signed main() { EMT
	int n;
	cin >> n;
	int a, b;
	cin >> a >> b;
	vis[0] = 1;
	for(int i = 1, a, b, t; i < n; i++) {
		cin >> a >> b;
		string s;
		cin >> s;
		if(s[0] == 'p')
			t = 1;
		if(s[0] == 'c')
			t = 2;
		if(s[0] == 'm')
			t = 3;
		edge[a].push_back({b, t});
		cnt[a][t]++;
		edge[b].push_back({a, t});
		cnt[b][t]++;
	}
	dfs(a);
	if(dep[b] & 1) {
		memset(anc[0], 0, sizeof anc[0]);
		//cerr << "here\n";
		dfs(b);
		dfs(b, 1);
		build(n);
		//for(int i = 1; i <= n; i++)
			//cout << lca(i, a) << " \n"[i == n];
		bool ok = 0;
		for(int i = 1; i <= n; i++)
			ok |= (pat[i] & 1) && lca(i, a) != b && !vis[anc[0][i]] && (!vis[lca(i, a)] || dis(a, i) <= dep[i]);
		cout << (ok ? "Magenta" : "Marin") << '\n';
	}// Lost or draw
	else {
		memset(anc[0], 0, sizeof anc[0]);
		//cerr << "owo\n";
		dfs(a);
		dfs(a, 0);
		build(n);
		bool ok = 0;
		for(int i = 1; i <= n; i++)
			ok |= (pat[i] >> 1 & 1) && lca(i, b) != a && !vis[anc[0][i]] && (!vis[lca(i, b)] || dis(b, i) < dep[i]);
		cout << (ok ? "Magenta" : "Paula") << '\n';
	}// Win or draw
}
/*
5
3 5
1 2 magenta
1 3 magenta
2 4 plava
2 5 crvena

5
1 4
2 1 plava
1 3 crvena
5 2 plava
4 1 magenta

*/

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:76:12: warning: 't' may be used uninitialized in this function [-Wmaybe-uninitialized]
   76 |   cnt[b][t]++;
      |   ~~~~~~~~~^~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 3180 KB Output is correct
2 Correct 2 ms 3180 KB Output is correct
3 Correct 2 ms 3180 KB Output is correct
4 Incorrect 2 ms 3180 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 102 ms 16748 KB Output is correct
2 Correct 106 ms 16748 KB Output is correct
3 Correct 105 ms 16748 KB Output is correct
4 Correct 111 ms 16748 KB Output is correct
5 Correct 99 ms 16896 KB Output is correct
6 Correct 2 ms 3180 KB Output is correct
7 Correct 2 ms 3180 KB Output is correct
8 Correct 2 ms 3180 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 3180 KB Output is correct
2 Correct 2 ms 3180 KB Output is correct
3 Correct 2 ms 3180 KB Output is correct
4 Incorrect 2 ms 3180 KB Output isn't correct
5 Halted 0 ms 0 KB -