# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1140036 | brover29 | Bulldozer (JOI17_bulldozer) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "Ioi.h"
using namespace std;
using ll = long long;
const ll N=10005;
ll ans,msg[N];
ll pr[N],used[N];
vector<ll> g[N];
set<pair<ll,ll>>edges;
void dfs(ll v){
used[v]=1;
for(ll to:g[v]){
if(used[to])continue;
pr[to]=v;
dfs(to);
}
}void calc(ll v,ll i=0){
used[v]=1;
ans+=(1ll<<i)*msg[v];
for(ll to:g[v]){
if(used[to])continue;
//msg[to]=Move(to);
calc(to,i+1);
break;
}
}
long long Ioi(int n, int m, int U[], int VV[], int P, int V, int T) {
for(ll i=0;i<m;i++){