# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
551973 | 2022-04-22T04:38:12 Z | aadit_ambadkar | Burza (COCI16_burza) | C++11 | 68 ms | 3304 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define pb push_back vector<int>v[402], q[402]; int n, k, level[402], st[402], dr[402], pz; void dfs(int dad, int nod) { if(nod) level[nod] = level[dad] + 1; if(level[nod] == k-1) { st[nod] = pz++; dr[nod] = pz; return; } st[nod] = pz; for(int i = 0; i < v[nod].size(); ++i) { int vecin = v[nod][i]; if(vecin == dad) continue; dfs(nod, vecin); } dr[nod] = pz; } bool dp[402][(1<<20)]; bool solve() { dp[0][0] = 1; for(int i = 1; i < n; ++i) q[st[i]].push_back(i); for(int i = 0; i < pz; ++i) { for(int j = 0; j < (1<<k); ++j) { if (!dp[i][j]) continue; for(int jj = 0; jj < q[i].size(); ++jj) { int it = q[i][jj]; if (!(j >> level[it] & 1)) dp[dr[it]][j | (1<<level[it])] = 1; } } } for(int j = 0; j < (1<<k); ++j) if (dp[pz][j]) return 1; return 0; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> n >> k; if(k * k >= n) { cout << "DA\n"; return 0; } for(int i = 1; i < n; ++i) { int a, b; cin >> a >> b; --a, --b; v[a].pb(b); v[b].pb(a); } level[0] = -1; dfs(-1, 0); cout << (solve() ? "DA" : "NE"); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 980 KB | Output is correct |
2 | Correct | 42 ms | 2412 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 980 KB | Output is correct |
6 | Correct | 1 ms | 468 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 64 ms | 2652 KB | Output is correct |
2 | Correct | 40 ms | 2604 KB | Output is correct |
3 | Correct | 1 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 61 ms | 2968 KB | Output is correct |
6 | Correct | 2 ms | 980 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 52 ms | 2732 KB | Output is correct |
2 | Correct | 48 ms | 2480 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 1 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 852 KB | Output is correct |
6 | Correct | 1 ms | 468 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 15 ms | 1332 KB | Output is correct |
2 | Correct | 58 ms | 3304 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 1 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 852 KB | Output is correct |
6 | Correct | 1 ms | 468 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 39 ms | 2252 KB | Output is correct |
2 | Correct | 52 ms | 2904 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 1 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 980 KB | Output is correct |
6 | Correct | 1 ms | 852 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 50 ms | 2700 KB | Output is correct |
2 | Correct | 47 ms | 2696 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 980 KB | Output is correct |
6 | Correct | 1 ms | 724 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 64 ms | 2972 KB | Output is correct |
2 | Correct | 52 ms | 2768 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 59 ms | 3148 KB | Output is correct |
6 | Correct | 1 ms | 852 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 14 ms | 1284 KB | Output is correct |
2 | Correct | 47 ms | 2744 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 724 KB | Output is correct |
6 | Correct | 1 ms | 980 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 828 KB | Output is correct |
2 | Correct | 68 ms | 2964 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 1 ms | 340 KB | Output is correct |
5 | Correct | 1 ms | 724 KB | Output is correct |
6 | Correct | 1 ms | 980 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 1568 KB | Output is correct |
2 | Correct | 55 ms | 2956 KB | Output is correct |
3 | Correct | 0 ms | 340 KB | Output is correct |
4 | Correct | 0 ms | 340 KB | Output is correct |
5 | Correct | 21 ms | 1612 KB | Output is correct |
6 | Correct | 1 ms | 596 KB | Output is correct |