Submission #9706801


Source Code Expand

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
// vid : id -> vid          head, heavy, parent : unused
// depth : id -> depth      inv : vid -> id
// in(vid), out(vid) : for euler tree [in[v], out[v])
struct HLDecomposition {
    vector<set<int>> g; vector<int> vid, head, heavy, parent, depth, inv, in, out;
    HLDecomposition() {} HLDecomposition(int n) { init(n); }
    void init(int n) {
        g.resize(n); vid.resize(n, -1); head.resize(n); heavy.resize(n, -1);
        parent.resize(n); depth.resize(n); inv.resize(n); in.resize(n); out.resize(n);
    }
    void add(int u, int v) { g[u].insert(v); g[v].insert(u); }
	void build(int root) { dfs(root, -1); t = 0; dfs_hld(root); }

    int dfs(int curr, int prev) {
        parent[curr] = prev; int sub = 1, max_sub = 0;
        heavy[curr] = -1;
        for (int next : g[curr]) if (next != prev) {
            depth[next] = depth[curr] + 1;
            int sub_next = dfs(next, curr); sub += sub_next;
            if (max_sub < sub_next) max_sub = sub_next, heavy[curr] = next;
        }return sub;
    }

    int t = 0;
    void dfs_hld(int v = 0)
    {
        vid[v] = in[v] = t;
        t++;
        inv[in[v]] = v;
        if (0 <= heavy[v]) {
            head[heavy[v]] = head[v];
            dfs_hld(heavy[v]);
        }
        for (auto u : g[v]) if(depth[v] < depth[u])  if (u != heavy[v]) {
            head[u] = u;
            dfs_hld(u);
        }
        out[v] = t;
    }


    void foreach(int u, int v, function<void(int, int)> f) { // [x,y]
        if (vid[u] > vid[v]) swap(u, v); f(max(vid[head[v]], vid[u]), vid[v]);
        if (head[u] != head[v]) foreach(u, parent[head[v]], f);
    }
    int ancestor(int from, int times) {
        while (true) {
            if (depth[head[from]] > depth[from] - times) {
                times -= depth[from] - depth[head[from]] + 1; if (head[from] == 0)return -1; from = parent[head[from]];
            }
            else return inv[vid[from] - times];
        }
    }
    int lca(int u, int v) {
        if (vid[u] > vid[v]) swap(u, v); if (head[u] == head[v]) return u;
        return lca(u, parent[head[v]]);
    }
    int distance(int u, int v) { return depth[u] + depth[v] - 2 * depth[lca(u, v)]; }
    int child(int parent, int child, int times) {
        assert(depth[parent]<depth[child]);
        int d = distance(parent, child); assert(times - 1 <= d); return ancestor(child, d - times);
    }
    int go(int from, int to, int times) {
        int d = distance(from, to); assert(0 <= times and times <= d);
        int lc = lca(from, to); if (lc == to)return ancestor(from, times); if (lc == from)return child(from, to, times);
        int dd = distance(from, lc); if (dd <= times)return go(lc, to, times - dd); return ancestor(from, times);
    }
};
#ifdef _MSC_VER
inline unsigned int __builtin_popcount(unsigned int x) { return __popcnt(x); }
#endif // _MSC_VER
/*---------------------------------------------------------------------------------------------------
            ∧_∧
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     @hamayanhamayan0
    /   \     | |
    /   / ̄ ̄ ̄ ̄/  |
  __(__ニつ/     _/ .| .|____
     \/____/ (u ⊃
---------------------------------------------------------------------------------------------------*/














int N, M;
ll po[51];
bitset<50> pre[20];
//---------------------------------------------------------------------------------------------------
void _main() {
	po[0] = 1;
	rep(i, 1, 51) po[i] = po[i - 1] * 2;

	cin >> N;
	HLDecomposition hld(N);
	rep(i, 0, N - 1) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		hld.add(a, b);
	}
	hld.build(0);

	cin >> M;
	rep(i, 0, M) {
		int u, v;
		cin >> u >> v;
		u--; v--;

		while (u != v) {
			int to = hld.go(u, v, 1);

			if(hld.depth[u] > hld.depth[to]) pre[i].set(u);
			else pre[i].set(to);
			
			u = to;
		}
	}

	ll ans = 0;
	rep(msk, 0, 1 << M) {
		int p = __builtin_popcount(msk) % 2;
		
		bitset<50> white;
		rep(i, 0, M) if (msk & (1 << i)) white |= pre[i];

		int rest = N - 1 - white.count();
		if (p == 0) ans += po[rest];
		else ans -= po[rest];
	}
	cout << ans << endl;
}





Submission Info

Submission Time
Task F - Tree and Constraints
User hamayanhamayan
Language C++14 (GCC 5.4.1)
Score 600
Code Size 5080 Byte
Status AC
Exec Time 71 ms
Memory 256 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 600 / 600
Status
AC × 4
AC × 27
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt
All dense_01.txt, dense_02.txt, dense_03.txt, dense_04.txt, dense_05.txt, large_ans.txt, line_01.txt, line_02.txt, line_03.txt, no_overlap.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, star_01.txt, star_02.txt, star_03.txt
Case Name Status Exec Time Memory
dense_01.txt AC 71 ms 256 KiB
dense_02.txt AC 3 ms 256 KiB
dense_03.txt AC 3 ms 256 KiB
dense_04.txt AC 71 ms 256 KiB
dense_05.txt AC 3 ms 256 KiB
large_ans.txt AC 1 ms 256 KiB
line_01.txt AC 71 ms 256 KiB
line_02.txt AC 70 ms 256 KiB
line_03.txt AC 71 ms 256 KiB
no_overlap.txt AC 71 ms 256 KiB
random_01.txt AC 35 ms 256 KiB
random_02.txt AC 71 ms 256 KiB
random_03.txt AC 35 ms 256 KiB
random_04.txt AC 71 ms 256 KiB
random_05.txt AC 35 ms 256 KiB
random_06.txt AC 71 ms 256 KiB
random_07.txt AC 35 ms 256 KiB
random_08.txt AC 35 ms 256 KiB
random_09.txt AC 70 ms 256 KiB
random_10.txt AC 70 ms 256 KiB
sample_01.txt AC 1 ms 256 KiB
sample_02.txt AC 1 ms 256 KiB
sample_03.txt AC 1 ms 256 KiB
sample_04.txt AC 1 ms 256 KiB
star_01.txt AC 71 ms 256 KiB
star_02.txt AC 70 ms 256 KiB
star_03.txt AC 70 ms 256 KiB