# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
951991 | 2024-03-23T03:30:45 Z | mocha | Paths (BOI18_paths) | C++14 | 82 ms | 33756 KB |
#include <bits/stdc++.h> #define int long long #define ff first #define ss second using namespace std; const int mx = 3e5+5; int n, m, k; int cnt[1<<5][mx]; int tmp[1<<5][mx]; int c[mx]; vector<pair<int, int>> e; int ans1, ans2, ans3, ans4, ans5; vector<int> nums[6]; int ans; void init() { for (int i=0;i<1<<k;i++) { int ii=i, cnt=0; while (ii) { cnt += (ii&1); ii >>= 1; } nums[cnt].push_back(i); } } void get1() { for (auto [u, v]:e) { cnt[c[v]][u]++; cnt[c[u]][v]++; } for (int i=1;i<=n;i++) { for (int j:nums[1]) { if (j == c[i]) continue; ans1 += cnt[j][i]; } } } void get2() { for (int i=1;i<=n;i++) { for (int x = 1;x<1<<k;x<<=1) { if (x == c[i]) continue; for (int y = 1; y < 1<<k ; y<<=1) { if ( y == c[i] or x == y) continue; ans2 += cnt[x][i] * cnt[y][i]; } } } } void get3() { for (auto [u, v]:e) { if (c[u] == c[v]) continue; for (int x = 1;x<1<<k;x<<=1) { if (x == c[u] or x == c[v]) continue; for (int y = 1; y < 1<<k ; y<<=1) { if (y == c[u] or y == c[v] or x == y) continue; ans2 += cnt[x][v] * cnt[y][u] * 2; } } } } void get4() { for (auto [u, v]:e) { if (c[u] == c[v]) return; for (int i=1;i<1<<k;i<<=1) { if (i != c[u] and i != c[v]) { cnt[i|c[u]][v] += cnt[i][u]; cnt[i|c[v]][u] += cnt[i][v]; } } } int mask = 1<<5; mask--; for (int i=1;i<=n;i++) { for (int j:nums[2]) { if (j & c[i]) continue; int inv = (~(j&c[i])) & mask; ans3 += cnt[j][i] * cnt[inv][i] * 2; } } } signed main() { cin.tie(0);ios::sync_with_stdio(0); cin >> n >> m >> k; e.resize(m); init(); for (int i=1;i<=n;i++) { int x; cin >> x; x--; c[i] = 1<<x; } for (int i=0;i<m;i++) { cin >> e[i].ff >> e[i].ss; } if (k == 1) { ans = 0; } else if (k == 2) { get1(); ans = ans1; } else if (k == 3) { get1(); get2(); ans = ans1 + ans2; } else if (k == 4) { get1(); get2(); get3(); ans = ans1 + ans2 + ans3; } else { get1(); get2(); get3(); get4(); ans = ans1 + ans2 + ans3 + ans4; } cout << ans << "\n"; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 8540 KB | Output is correct |
2 | Correct | 1 ms | 8540 KB | Output is correct |
3 | Correct | 1 ms | 6492 KB | Output is correct |
4 | Correct | 1 ms | 4564 KB | Output is correct |
5 | Correct | 1 ms | 348 KB | Output is correct |
6 | Correct | 2 ms | 8540 KB | Output is correct |
7 | Correct | 1 ms | 8656 KB | Output is correct |
8 | Correct | 2 ms | 8540 KB | Output is correct |
9 | Correct | 1 ms | 4444 KB | Output is correct |
10 | Correct | 1 ms | 6492 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 36 ms | 13904 KB | Output is correct |
2 | Correct | 33 ms | 13392 KB | Output is correct |
3 | Correct | 70 ms | 26200 KB | Output is correct |
4 | Correct | 44 ms | 16724 KB | Output is correct |
5 | Correct | 42 ms | 10576 KB | Output is correct |
6 | Correct | 56 ms | 21844 KB | Output is correct |
7 | Correct | 61 ms | 26192 KB | Output is correct |
8 | Correct | 62 ms | 26200 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 8540 KB | Output is correct |
2 | Correct | 1 ms | 8540 KB | Output is correct |
3 | Correct | 1 ms | 6492 KB | Output is correct |
4 | Correct | 1 ms | 4564 KB | Output is correct |
5 | Correct | 1 ms | 348 KB | Output is correct |
6 | Correct | 2 ms | 8540 KB | Output is correct |
7 | Correct | 1 ms | 8656 KB | Output is correct |
8 | Correct | 2 ms | 8540 KB | Output is correct |
9 | Correct | 1 ms | 4444 KB | Output is correct |
10 | Correct | 1 ms | 6492 KB | Output is correct |
11 | Correct | 36 ms | 13904 KB | Output is correct |
12 | Correct | 33 ms | 13392 KB | Output is correct |
13 | Correct | 70 ms | 26200 KB | Output is correct |
14 | Correct | 44 ms | 16724 KB | Output is correct |
15 | Correct | 42 ms | 10576 KB | Output is correct |
16 | Correct | 56 ms | 21844 KB | Output is correct |
17 | Correct | 61 ms | 26192 KB | Output is correct |
18 | Correct | 62 ms | 26200 KB | Output is correct |
19 | Correct | 33 ms | 13904 KB | Output is correct |
20 | Correct | 31 ms | 13456 KB | Output is correct |
21 | Correct | 69 ms | 26324 KB | Output is correct |
22 | Correct | 41 ms | 16720 KB | Output is correct |
23 | Correct | 36 ms | 10576 KB | Output is correct |
24 | Correct | 53 ms | 21588 KB | Output is correct |
25 | Correct | 62 ms | 26320 KB | Output is correct |
26 | Correct | 64 ms | 26052 KB | Output is correct |
27 | Correct | 39 ms | 15444 KB | Output is correct |
28 | Correct | 43 ms | 16276 KB | Output is correct |
29 | Correct | 79 ms | 30288 KB | Output is correct |
30 | Correct | 63 ms | 23636 KB | Output is correct |
31 | Correct | 62 ms | 23380 KB | Output is correct |
32 | Correct | 82 ms | 30144 KB | Output is correct |
33 | Correct | 1 ms | 8540 KB | Output is correct |
34 | Correct | 1 ms | 8540 KB | Output is correct |
35 | Correct | 1 ms | 6492 KB | Output is correct |
36 | Correct | 1 ms | 4444 KB | Output is correct |
37 | Correct | 0 ms | 348 KB | Output is correct |
38 | Correct | 1 ms | 8540 KB | Output is correct |
39 | Correct | 1 ms | 8540 KB | Output is correct |
40 | Correct | 1 ms | 8540 KB | Output is correct |
41 | Correct | 1 ms | 4444 KB | Output is correct |
42 | Correct | 1 ms | 6492 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 16728 KB | Output is correct |
2 | Incorrect | 23 ms | 33756 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |