# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
499789 | NachoLibre | "The Lyuboyn" code (IZhO19_lyuboyn) | C++17 | 53 ms | 6460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
using namespace std;
string str(int x, int n) {
string s;
for(int i = n - 1; i >= 0; --i) { s += '0' + !!(x & 1 << i); }
return s;
}
int num(string s) {
int x = 0;
for(int i = 0; i < sz(s); ++i) { x <<= 1; x |= s[i] == '1'; }
return x;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, k, t;
string S;
cin >> n >> k >> t >> S;
int s = num(S);
if(k % 2 == 0) return cout << -1 << endl, 0;
vector<int> v{0};
for(int i = 1; i < k + 1; ++i) {
v.push_back(i);
for(int j = sz(v) - 2; j >= 0; --j) {
v.push_back(v[j]);
}
}
vector<int> fp{0};
for(int i : v) {
fp.push_back(fp.back() ^ (1 << k + 1) - 1 ^ 1 << i);
}
for(int i = k + 1; i < n; ++i) {
for(int j = sz(fp) - 1; j >= 0; --j) {
fp.push_back(fp[j] ^ 1 << i ^ (1 << k - 1) - 1);
}
}
for(int x : fp) {
cout << str(x ^ s, n) + "\n";
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |