제출 #498610

#제출 시각아이디문제언어결과실행 시간메모리
498610nickmet2004"The Lyuboyn" code (IZhO19_lyuboyn)C++11
0 / 100
3 ms812 KiB
#include<bits/stdc++.h> using namespace std; const int N = 2e5 + 5; int n , k , T; string s; int p; main (){ ios_base::sync_with_stdio(0); cin.tie(0); cin >> n>>k>>T>>s; vector<int> v; for(int i= 0; i < (1<<n); ++i){ if(__builtin_popcount(i)==k){ v.emplace_back(i); } } int X= 0; for(int i = 0; i< s.size(); ++i){ if(s[i]=='1')X+=(1<<(s.size()-i-1)); } cout << X<<endl; // for(int x : v)cout <<x<<endl; int M = (1<<n)- 1; vector<int> ans; ans.emplace_back(X); int ok = 0; int y = X^v[0]; ans.emplace_back(y); ans.emplace_back(y^v[1]); int b = 2; M-=2; int ab; for(int i = 0; i< M; ++i){ if(p == v.size()){ ok=1;break; } if(i&1^1){ ab = ans.back()^v[p]; ans.emplace_back(ab); ++p; }else{ ab = ans.back()^v[b]; ans.emplace_back(ab); ++b; } } if(ok){ cout<<-1<<endl;return 0; } //for(int x : ans)cout <<x << " "; for(int i = 0; i < ans.size();++i){ string s=""; int x = ans[i]; while(x){ int y = x % 2; s += (char)(y+'0'); x/=2; } if(ans[i]==0){for(int k = 0; k < n; ++k)cout<<0;cout<<endl;} else{ for(int k =0; k < n-s.size(); ++k)s+='0'; reverse(s.begin(),s.end()); cout <<s<<endl; } } }

컴파일 시 표준 에러 (stderr) 메시지

lyuboyn.cpp:7:2: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 |  main (){
      |  ^~~~
lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:17:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |     for(int i = 0; i< s.size(); ++i){
      |                    ~^~~~~~~~~~
lyuboyn.cpp:33:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |         if(p == v.size()){
      |            ~~^~~~~~~~~~~
lyuboyn.cpp:36:13: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
   36 |         if(i&1^1){
      |            ~^~
lyuboyn.cpp:50:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |     for(int i = 0; i < ans.size();++i){
      |                    ~~^~~~~~~~~~~~
lyuboyn.cpp:60:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   60 |             for(int k =0; k < n-s.size(); ++k)s+='0';
      |                           ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...