This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
long long n, a, b, x, y, height[100001];
string s;
vector<int> vec[100001];
void dfs(int x, int p, int h)
{
height[x] = h;
for(int c : vec[x]) if(c != p) dfs(c, x, h + 1);
}
int main()
{
cin >> n >> a >> b;
for(int i = 1; i < n; ++i)
{
cin >> x >> y;
vec[x].push_back(y);
vec[y].push_back(x);
}
dfs(a, 0, 0);
if(height[b] % 2 == 0) cout << "Marin";
else cout << "Paula";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |