Advertisement
pb_jiang

cf379d wa2

Jan 2nd, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.45 KB | None | 0 0
  1. #include <assert.h>
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define dbg(...) logger(#__VA_ARGS__, __VA_ARGS__)
  5. template <typename... Args> void logger(string vars, Args &&... values)
  6. {
  7.     cerr << vars << " = ";
  8.     string delim = "";
  9.     (..., (cerr << delim << values, delim = ", "));
  10.     cerr << endl;
  11. }
  12.  
  13. template <class T> inline auto vv(int m) { return vector<vector<T>>(m, vector<T>(m)); }
  14. template <class T> inline auto vv(int m, int n) { return vector<vector<T>>(m, vector<T>(n)); }
  15. template <class T, T init> inline auto vv(int m) { return vector<vector<T>>(m, vector<T>(m, init)); }
  16. template <class T, T init> inline auto vv(int m, int n) { return vector<vector<T>>(m, vector<T>(n, init)); }
  17.  
  18. template <class T> using mpq = priority_queue<T, vector<T>, greater<T>>;
  19.  
  20. using ll = long long;
  21. using pii = pair<int, int>;
  22. using vl = vector<ll>;
  23. using vi = vector<int>;
  24.  
  25. int main(int argc, char **argv)
  26. {
  27.     int k, x, n, m;
  28.     cin >> k >> x >> n >> m;
  29.     ll a1 = 1, a2 = 1, a12 = 1, a21 = 0, a22 = 0;
  30.     ll b1 = 1, b2 = 2, b12 = 1, b21 = 0, b22 = 0;
  31.     for (int i = 5; i <= k; ++i) {
  32.         ll c1 = a1 + b1, c2 = a2 + b2;
  33.         ll c12 = a12 + b12, c21 = a21 + b21 + (i + 1 % 2);
  34.         ll c22 = 0;
  35.         switch (i) {
  36.             case 3:
  37.                 c22 = 1;
  38.                 break;
  39.             default:
  40.                 c22 = a22 + b22 + (i % 2);
  41.                 break;
  42.         }
  43.         a1 = b1, a2 = b2, a12 = b12, a21 = b21, a22 = b22;
  44.         b1 = c1, b2 = c2, b12 = c12, b21 = c21, b22 = c22;
  45.     }
  46.     if (k == 3) {
  47.         b1 = a1, b2 = a2, b12 = a12, b21 = a21, b22 = a22;
  48.     }
  49.     if (k == 4) {
  50.         // nothing
  51.     }
  52.  
  53.     string s1, s2;
  54.     for (int i = 0; i <= n / 2; ++i) {
  55.         s2 = "";
  56.         for (int j = 0; j <= m / 2; ++j) {
  57.             if (x == i * b1 + j * b2) {
  58.                 dbg(i, b1, j, b2, i * b1 + j * b2, x);
  59.                 dbg(s1, s2);
  60.                 s1 += string(n - s1.size(), 'D');
  61.                 s2 += string(m - s2.size(), 'D');
  62.                 cout << s1 << '\n' << s2 << '\n';
  63.                 return 0;
  64.             } else if (x == i * b1 + j * b2 + b12 && i * 2 + 1 <= n && j * 2 + 1 <= m) {
  65.                 dbg(i, b1, j, b2, b12, i * b1 + j * b2 + b12, x);
  66.                 s1 += string(n - 1 - s1.size(), 'D');
  67.                 s2 += string(m - 1 - s2.size(), 'D');
  68.                 s1 += 'A';
  69.                 s2 = 'C' + s2;
  70.                 cout << s1 << '\n' << s2 << '\n';
  71.                 return 0;
  72.             } else if (x == i * b1 + j * b2 + b21 && i * 2 + 1 <= n && j * 2 + 1 <= m) {
  73.                 dbg(i, b1, j, b2, b21, i * b1 + j * b2 + b21, x);
  74.                 s1 += string(n - 1 - s1.size(), 'D');
  75.                 s2 += string(m - 1 - s2.size(), 'D');
  76.                 s1 = 'C' + s1;
  77.                 s2 += 'A';
  78.                 cout << s1 << '\n' << s2 << '\n';
  79.                 return 0;
  80.             } else if (x == i * b1 + j * b2 + b12 + b21 + b22 && i * 2 + 2 <= n && j * 2 + 2 <= m) {
  81.                 dbg(i, b1, j, b2, b12, b21, b22, i * b1 + j * b2 + b12 + b21 + b22, x);
  82.                 s1 += string(n - 2 - s1.size(), 'D');
  83.                 s2 += string(m - 2 - s2.size(), 'D');
  84.                 s1 = 'C' + s1 + 'A';
  85.                 s2 = 'C' + s2 + 'A';
  86.                 cout << s1 << '\n' << s2 << '\n';
  87.                 return 0;
  88.             }
  89.             s2 += "AC";
  90.         }
  91.         s1 += "AC";
  92.     }
  93.     cout << "Happy new year!" << endl;
  94.     return 0;
  95. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement