# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
173617 | 2020-01-04T17:33:59 Z | RafaelSus | "The Lyuboyn" code (IZhO19_lyuboyn) | C++14 | 1000 ms | 13976 KB |
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; typedef long long ll; const ll inf=1e15; #define pb push_back const int INF=(0x3f3f3f3f); int tod(vector<int>a){ int res=0; reverse(a.begin(),a.end()); for(int i=0;i<a.size();i++){ res+=a[i]*(1<<i); } return res; } string tobin(int x,int h){ string res=""; if(x==0){ res="0"; while(res.size()<h)res+="0"; return res; } while(x){ if(x%2)res+="1"; else res+="0"; x/=2; } while(res.size()<h)res+="0"; reverse(res.begin(),res.end()); return res; } void print(vector<int> a){ for(int i=0;i<a.size();i++)cout<<a[i]<<' '; cout << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(0);cout.tie(0); int n,k,t; cin>>n>>k>>t; string s; cin>>s; vector<int> a(n,0); for(int i=0;i<k;i++)a[i]=1; int start=0; vector<int>tv; tv.pb(start); int X=0; set<int>st; st.insert(0); vector<int>b=a; while(tv.size()<(1<<n)){ do{ if(st.find(start^tod(a))!=st.end())continue; tv.pb(start^tod(a)); st.insert(start^tod(a)); start^=tod(a); //cerr<<start<<'\n'; //print(a); }while(prev_permutation(a.begin(),a.end())); X++; for(int i=0;i<n;i++)a[i]=0; for(int i=0;i<k;i++)a[i]=1; /*if(tv.size()==8){cerr<<"NOOOOO"; for(int i=0;i<8;i++){ cout<<tobin(tv[i],n)<<'\n'; } }*/ } /*int p=0; for(int i=0;i<(1<<n);i++){ if(s==tobin(tv[i],n)){p=i;break;} }*/ for(int i=0;i<(1<<n);i++){ cout<<tobin(tv[i],n)<<'\n'; //cout<<tv[i]<<'\n'; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Expected integer, but "00" found |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Expected integer, but "0000" found |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1085 ms | 504 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1074 ms | 8548 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1065 ms | 376 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1055 ms | 13976 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1074 ms | 8548 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1063 ms | 6668 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |