#include <iostream> using namespace std; typedef unsigned long long int u64; u64 power( long a ){ u64 ret = 1; while( a-- ){ ret <<= 1; } return ret; } u64 sumElem( u64 a ){ u64 ret = 1; while(--a){ ret <<= 1; ret |= 1; } return ret; } int main(){ cin.tie(0); ios_base::sync_with_stdio(0); u64 k, n; cin >> n >> k; char last = 'x'; if( n < 63 ){ if( k > sumElem(n)*3 ){ cout << "NIE\n"; return 0; } } if( n > k ){ cout << "NIE\n"; return 0; } while( n >= 64 && k > 0 ){ if(last != 'a'){ cout << 'a'; last = 'a'; } else{ cout << 'b'; last = 'b'; } k--; n--; } u64 temp = power(n); if( last == 'x' ){ if( k >= ( temp << 1 )-1 ){ k -= (temp << 1)-1; last = 'c'; cout << 'c'; } else if( k >= temp ){ cout << 'b'; last = 'b'; k -= temp; } else{ last = 'a'; cout << 'a'; k--; } n--; temp >>= 1; } while( k > 0 ){ //cout << "\n k: " << k << " temp: " << temp << " leter chosen: "; if( last == 'a' ){ if( temp <= k ){ cout << 'c'; k -= temp; last = 'c'; } else{ cout << 'b'; last = 'b'; k--; } } else if( last == 'b' ) { if( temp <= k ){ cout << 'c'; k -= temp; last = 'c'; } else{ cout << 'a'; last = 'a'; k--; } } else if( last == 'c' ) { if( temp <= k ){ cout << 'b'; k -= temp; last = 'b'; } else{ cout << 'a'; last = 'a'; k--; } } n--; temp >>= 1; } cout << '\n'; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | #include <iostream> using namespace std; typedef unsigned long long int u64; u64 power( long a ){ u64 ret = 1; while( a-- ){ ret <<= 1; } return ret; } u64 sumElem( u64 a ){ u64 ret = 1; while(--a){ ret <<= 1; ret |= 1; } return ret; } int main(){ cin.tie(0); ios_base::sync_with_stdio(0); u64 k, n; cin >> n >> k; char last = 'x'; if( n < 63 ){ if( k > sumElem(n)*3 ){ cout << "NIE\n"; return 0; } } if( n > k ){ cout << "NIE\n"; return 0; } while( n >= 64 && k > 0 ){ if(last != 'a'){ cout << 'a'; last = 'a'; } else{ cout << 'b'; last = 'b'; } k--; n--; } u64 temp = power(n); if( last == 'x' ){ if( k >= ( temp << 1 )-1 ){ k -= (temp << 1)-1; last = 'c'; cout << 'c'; } else if( k >= temp ){ cout << 'b'; last = 'b'; k -= temp; } else{ last = 'a'; cout << 'a'; k--; } n--; temp >>= 1; } while( k > 0 ){ //cout << "\n k: " << k << " temp: " << temp << " leter chosen: "; if( last == 'a' ){ if( temp <= k ){ cout << 'c'; k -= temp; last = 'c'; } else{ cout << 'b'; last = 'b'; k--; } } else if( last == 'b' ) { if( temp <= k ){ cout << 'c'; k -= temp; last = 'c'; } else{ cout << 'a'; last = 'a'; k--; } } else if( last == 'c' ) { if( temp <= k ){ cout << 'b'; k -= temp; last = 'b'; } else{ cout << 'a'; last = 'a'; k--; } } n--; temp >>= 1; } cout << '\n'; return 0; } |