# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
132544 | 2019-07-19T07:03:57 Z | 이온조(#3199) | Friends (BOI17_friends) | C++14 | 1000 ms | 760 KB |
#include <bits/stdc++.h> using namespace std; using pii = pair<int, int>; #define sz(V) ((int)V.size()) vector<vector<int> > ans; int N, p, q, P[100009], all; vector<int> adj[2509]; int ba[22]; bool D[100009], ok[100009], chk[2509][2509]; int cnt(int bit) { int ret = 0; for(int i=0; i<N; i++) if((bit >> i) & 1) ret += __builtin_popcount((all ^ bit) & ba[i]); return ret; } void Do(int bit) { vector<int> S; for(int i=0; i<N; i++) if((bit >> i) & 1) S.push_back(i); ans.push_back(S); } void go(int bit) { if(ok[bit]) { Do(bit); return; } go(P[bit]); go(P[bit] ^ bit); } void show(int bit) { for(int i=0; i<N; i++) { if((bit >> i) & 1) printf("1"); else printf("0"); } puts(""); } int main() { scanf("%d%d%d",&N,&p,&q); all = (1<<N) - 1; assert(N <= 16); for(int i=0; i<N; i++) { int m; scanf("%d",&m); for(int j=0; j<m; j++) { int foo; scanf("%d",&foo); adj[i].push_back(foo); chk[i][foo] = 1; ba[i] |= (1 << foo); } } for(int i=1; i<(1<<N); i++) { D[i] = ok[i] = (__builtin_popcount(i) <= p && cnt(i) <= q); vector<int> S; for(int j=0; j<N; j++) if((i >> j) & 1) S.push_back(j); for(int k=1; k<(1<<sz(S)); k++) { int bit = 0; for(int j=0; j<sz(S); j++) if((k >> j) & 1) bit |= (1 << S[j]); D[i] |= (D[bit] && D[i ^ bit]); if(D[bit] && D[i ^ bit]) P[i] = bit; if(D[i]) break; } // show(i); // printf("result: %d\n\n", D[i]); } for(int i=0; i<N; i++) for(int j=0; j<N; j++) if(chk[i][j] && !chk[j][i]) D[all] = 0; if(D[all]) { puts("home"); go(all); printf("%d\n", ans.size()); for(auto& it: ans) { printf("%d ", it.size()); for(auto& jt: it) printf("%d ", jt); puts(""); } } else puts("detention"); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 173 ms | 760 KB | Output is correct |
5 | Execution timed out | 1061 ms | 760 KB | Time limit exceeded |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 18 ms | 376 KB | Output is correct |
2 | Runtime error | 3 ms | 632 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 18 ms | 376 KB | Output is correct |
2 | Runtime error | 3 ms | 632 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 173 ms | 760 KB | Output is correct |
5 | Execution timed out | 1061 ms | 760 KB | Time limit exceeded |
6 | Halted | 0 ms | 0 KB | - |