# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
696997 | 2023-02-07T20:58:37 Z | Markomafko972 | Burza (COCI16_burza) | C++14 | 231 ms | 33796 KB |
#include <bits/stdc++.h> #define X first #define Y second #define pb push_back #define pii pair<int, int> typedef long long ll; using namespace std; const int MOD = 1e9 + 7; const ll INF = 1e18; const int OFF = (1 << 20); const int MAXN = 67108864; int n, k, a, b; vector<int> v[405]; vector<int> e[30][30]; vector<int> br[30]; bool dp[2][MAXN]; void dfs(int x, int d, int p) { if (d > k) return; br[d].push_back(x); for (int i = 0; i < v[x].size(); i++) { if (v[x][i] != p) { e[d][(int)br[d].size()-1].push_back((int)br[d+1].size()); dfs(v[x][i], d+1, x); } } } int main () { ios_base::sync_with_stdio(false); cin.tie(0); cin >> n >> k; if (k > 26) { cout << "DA"; return 0; } for (int i = 0; i < n-1; i++) { cin >> a >> b; v[a].push_back(b); v[b].push_back(a); } dfs(1, 0, 0); dp[0][0] = 1; for (int i = 0; i < k; i++) { for (int mask = 0; mask < (1 << ((int)br[i].size())); mask++) { if (dp[0][mask] == 0) continue; int nova = 0; for (int j = 0; j < br[i].size(); j++) { if ((mask&(1 << j)) == 0) continue; for (int slj = 0; slj < e[i][j].size(); slj++) nova |= (1 << e[i][j][slj]); } for (int j = 0; j < br[i+1].size(); j++) { dp[1][(nova|(1 << j))] = 1; } } for (int mask = 0; mask < (1 << ((int)br[i+1].size())); mask++) { dp[0][mask] = dp[1][mask]; dp[1][mask] = 0; } } if (dp[0][(1 << ((int)br[k].size()))-1] == 1) cout << "DA"; else cout << "NE"; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 14 ms | 1300 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 161 ms | 8964 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 231 ms | 33796 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 48 ms | 2692 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 150 ms | 4732 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 178 ms | 17164 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 212 ms | 9308 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 74 ms | 17236 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 22 ms | 4692 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 122 ms | 17156 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |