# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
129607 | 2019-07-12T19:11:21 Z | davitmarg | Friends (BOI17_friends) | C++17 | 14 ms | 10360 KB |
/*DavitMarg*/ #include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <string> #include <cstring> #include <map> #include <set> #include <queue> #include <iomanip> #include <stack> #include <cassert> #include <iterator> #include <bitset> #include <fstream> #define mod 1000000007ll #define LL long long #define LD long double #define MP make_pair #define PB push_back #define all(v) v.begin(),v.end() using namespace std; map<pair<int,int>,bool> edge; int n,p,q,lst[(1<<17)+5],mask[200005],dp[(1<<17)+5],pop[(1<<17)+5]; vector<int> g[200005]; void print(int msk) { cout<<pop[msk]<<" "; for(int i=0;i<n;i++) if(((1<<i)&msk)) cout<<i<<" "; cout<<endl; } int main() { cin >> n >> p >> q; for(int i=0;i<n;i++) { int p; int m; scanf("%d",&m); while(m--) { scanf("%d",&p); g[i].PB(p); edge[MP(i,p)]=1; mask[i]|=(1<<p); } } for(int i=0;i<n;i++) for(int j=0;j<g[i].size();j++) if(edge[MP(i,g[j][j])]!=edge[MP(g[j][j],i)]) { cout<<"detention"<<endl; return 0; } dp[0]=1; for(int i=1;i<(1<<n);i++) pop[i]=__builtin_popcount(i); for(int i=1;i<(1<<n);i++) { if(pop[i]<p) continue; int cnt=0; dp[i]=1; for(int j=0;j<n;j++) { if(((1<<j)&i)==0) continue; cnt+=pop[(((1<<j)|mask[j])^i)]; } if(cnt>q) dp[i]=0; } for(int i=1;i<(1<<n);i++) { if(pop[i]<p) continue; int msk=i; while(msk>0) { if(dp[msk] && dp[i^msk]) { dp[i]=1; lst[i]=msk; break; } msk=(msk-1)&i; } } if(!dp[(1<<n)-1]) cout<<"detention"<<endl; else { int cnt=0; int msk=(1<<n)-1; while(msk) { cnt++; msk^=lst[msk]; } cout<<"home\n"<<cnt<<endl; msk=(1<<n)-1; while(msk) { print(lst[msk]); msk^=lst[msk]; } } return 0; } /* 5 14 5 5 0 5 9 5 12 10 0 7 7 7 12 8 4 7 10 0 12 0 5 0 7 7 12 0 13 */
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 4984 KB | Output is correct |
2 | Incorrect | 6 ms | 5116 KB | Integer parameter [name=group_size] equals to 4, violates the range [1, 1] |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 4984 KB | Output is correct |
2 | Runtime error | 14 ms | 10360 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 4984 KB | Output is correct |
2 | Runtime error | 14 ms | 10360 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 4984 KB | Output is correct |
2 | Incorrect | 6 ms | 5116 KB | Integer parameter [name=group_size] equals to 4, violates the range [1, 1] |
3 | Halted | 0 ms | 0 KB | - |