Submission #146196

# Submission time Handle Problem Language Result Execution time Memory
146196 2019-08-22T19:38:11 Z imeimi2000 "The Lyuboyn" code (IZhO19_lyuboyn) C++17
8 / 100
381 ms 5492 KB
#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

char _S[20];
int B[1 << 18];
int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
    int n, k, t;
    cin >> n >> k >> t >> _S;
    if (k + 1 & 1) {
        printf("-1\n");
        return 0;
    }
    int S = 0;
    for (int i = 0; i < n; ++i) S = S << 1 | _S[i] - '0';
    for (int i = 0; i <= k; ++i)
        B[1 << i] = (1 << k + 1) - (1 << i) - 1;
    for (int i = k + 1; i < n; ++i)
        B[1 << i] = (1 << k - 1) + (1 << i);
    printf("%d\n", 1 << n);
    for (int i = 0; i < (1 << n); ++i) {
        S ^= B[i & -i];
        for (int j = n; j--; ) printf("%d", (S >> j) & 1);
        printf("\n");
    }
    return 0;
}

Compilation message

lyuboyn.cpp: In function 'int main()':
lyuboyn.cpp:13:11: warning: suggest parentheses around '+' in operand of '&' [-Wparentheses]
     if (k + 1 & 1) {
         ~~^~~
lyuboyn.cpp:18:52: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
     for (int i = 0; i < n; ++i) S = S << 1 | _S[i] - '0';
                                              ~~~~~~^~~~~
lyuboyn.cpp:20:29: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
         B[1 << i] = (1 << k + 1) - (1 << i) - 1;
                           ~~^~~
lyuboyn.cpp:22:29: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
         B[1 << i] = (1 << k - 1) + (1 << i);
                           ~~^~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Ok
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Ok
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Ok
2 Correct 2 ms 376 KB Ok
3 Correct 2 ms 376 KB Ok
4 Correct 2 ms 376 KB Ok
5 Correct 2 ms 376 KB Ok
6 Correct 2 ms 376 KB Ok
7 Correct 2 ms 376 KB Ok
8 Correct 2 ms 376 KB Ok
# Verdict Execution time Memory Grader output
1 Incorrect 381 ms 5420 KB Fail, not exactly k bits are different: line = 3
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Fail, not exactly k bits are different: line = 15
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 381 ms 5492 KB Fail, not exactly k bits are different: line = 255
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 381 ms 5420 KB Fail, not exactly k bits are different: line = 3
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 201 ms 2760 KB Fail, not exactly k bits are different: line = 65535
2 Halted 0 ms 0 KB -