# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
696628 | 2023-02-07T01:57:27 Z | SanguineChameleon | Šarenlist (COCI22_sarenlist) | C++17 | 39 ms | 328 KB |
// BEGIN BOILERPLATE CODE #include <bits/stdc++.h> using namespace std; #ifdef KAMIRULEZ const bool kami_loc = true; const long long kami_seed = 69420; #else const bool kami_loc = false; const long long kami_seed = chrono::steady_clock::now().time_since_epoch().count(); #endif const string kami_fi = "kamirulez.inp"; const string kami_fo = "kamirulez.out"; mt19937_64 kami_gen(kami_seed); long long rand_range(long long rmin, long long rmax) { uniform_int_distribution<long long> rdist(rmin, rmax); return rdist(kami_gen); } long double rand_real(long double rmin, long double rmax) { uniform_real_distribution<long double> rdist(rmin, rmax); return rdist(kami_gen); } void file_io(string fi, string fo) { if (fi != "" && (!kami_loc || fi == kami_fi)) { freopen(fi.c_str(), "r", stdin); } if (fo != "" && (!kami_loc || fo == kami_fo)) { freopen(fo.c_str(), "w", stdout); } } void set_up() { if (kami_loc) { file_io(kami_fi, kami_fo); } ios_base::sync_with_stdio(0); cin.tie(0); } void just_do_it(); void just_exec_it() { if (kami_loc) { auto pstart = chrono::steady_clock::now(); just_do_it(); auto pend = chrono::steady_clock::now(); long long ptime = chrono::duration_cast<chrono::milliseconds>(pend - pstart).count(); string bar(50, '='); cout << '\n' << bar << '\n'; cout << "Time: " << ptime << " ms" << '\n'; } else { just_do_it(); } } int main() { set_up(); just_exec_it(); return 0; } // END BOILERPLATE CODE // BEGIN MAIN CODE const long long mod = 1e9 + 7; vector<pair<int, int>> adj[70]; vector<int> g[70]; bool f[70]; vector<int> cur; vector<vector<int>> paths; long long pw[70]; int fin; void dfs1(int u, int pr) { if (u == fin) { paths.push_back(cur); } for (auto x: adj[u]) { int v = x.first; int id = x.second; if (v != pr) { cur.push_back(id); dfs1(v, u); cur.pop_back(); } } } void dfs2(int u) { f[u] = true; for (auto v: g[u]) { if (!f[v]) { dfs2(v); } } } void just_do_it() { int n, m, k; cin >> n >> m >> k; pw[0] = 1; for (int i = 1; i <= n; i++) { pw[i] = pw[i - 1] * k % mod; } for (int i = 1; i <= n - 1; i++) { int u, v; cin >> u >> v; adj[u].push_back({v, i}); adj[v].push_back({u, i}); } for (int i = 0; i < m; i++) { int u, v; cin >> u >> v; fin = v; dfs1(u, -1); } long long res = 0; for (int i = 0; i < (1 << m); i++) { for (int j = 1; j <= n - 1; j++) { g[j].clear(); f[j] = false; } int B = 0; for (int j = 0; j < m; j++) { if ((i >> j) & 1) { B++; int sz = paths[j].size(); for (int k = 0; k < sz - 1; k++) { int u = paths[j][k]; int v = paths[j][k + 1]; g[u].push_back(v); g[v].push_back(u); } } } int cnt = 0; for (int j = 1; j <= n - 1; j++) { if (!f[j]) { cnt++; dfs2(j); } } if (B & 1) { res = (res + mod - pw[cnt]) % mod; } else { res = (res + pw[cnt]) % mod; } } cout << res; } // END MAIN CODE
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 328 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 328 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 2 ms | 324 KB | Output is correct |
6 | Correct | 1 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 212 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 328 KB | Output is correct |
4 | Correct | 0 ms | 324 KB | Output is correct |
5 | Correct | 4 ms | 328 KB | Output is correct |
6 | Correct | 4 ms | 328 KB | Output is correct |
7 | Correct | 0 ms | 212 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 328 KB | Output is correct |
7 | Correct | 0 ms | 212 KB | Output is correct |
8 | Correct | 0 ms | 212 KB | Output is correct |
9 | Correct | 0 ms | 212 KB | Output is correct |
10 | Correct | 1 ms | 212 KB | Output is correct |
11 | Correct | 1 ms | 212 KB | Output is correct |
12 | Correct | 1 ms | 328 KB | Output is correct |
13 | Correct | 0 ms | 212 KB | Output is correct |
14 | Correct | 1 ms | 212 KB | Output is correct |
15 | Correct | 1 ms | 212 KB | Output is correct |
16 | Correct | 1 ms | 212 KB | Output is correct |
17 | Correct | 2 ms | 324 KB | Output is correct |
18 | Correct | 1 ms | 212 KB | Output is correct |
19 | Correct | 1 ms | 212 KB | Output is correct |
20 | Correct | 0 ms | 212 KB | Output is correct |
21 | Correct | 1 ms | 212 KB | Output is correct |
22 | Correct | 0 ms | 328 KB | Output is correct |
23 | Correct | 0 ms | 324 KB | Output is correct |
24 | Correct | 4 ms | 328 KB | Output is correct |
25 | Correct | 4 ms | 328 KB | Output is correct |
26 | Correct | 0 ms | 212 KB | Output is correct |
27 | Correct | 16 ms | 212 KB | Output is correct |
28 | Correct | 0 ms | 212 KB | Output is correct |
29 | Correct | 0 ms | 212 KB | Output is correct |
30 | Correct | 16 ms | 328 KB | Output is correct |
31 | Correct | 5 ms | 212 KB | Output is correct |
32 | Correct | 2 ms | 212 KB | Output is correct |
33 | Correct | 1 ms | 212 KB | Output is correct |
34 | Correct | 2 ms | 212 KB | Output is correct |
35 | Correct | 9 ms | 212 KB | Output is correct |
36 | Correct | 39 ms | 212 KB | Output is correct |
37 | Correct | 19 ms | 328 KB | Output is correct |