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
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <cmath>
#include <string>
#include <sstream>
using namespace std;

using ll = long long;

int main() {
    srand(5432532);
    string name;
    cin >> name;
    int n, t;
    cin >> n >> t;
    vector<int> x(n);
    for (auto &i : x) {
        i = rand() % 2;
    }
    while (t--) {
        string str, res;
        map<string, int> cnt;
        cin >> str;
        for (int i = 0; i < n; i++) {
            str[i] ^= x[i];
        }

        int score = 0;
        int a = 0;
        char m, r;
        int ab = 0;
        while (a < n || res.size() < n) {
            // ostringstream oss; oss << name << " " << a << " " << res << endl;
            // cerr << oss.str();
            if (a == n || res.size() == n)
                ab = max(ab, abs(a - (int)res.size()));
            bool passinfo = false;
            if (score == 0) {
                if (a == n) {
                    m = 'N'; // PK?
                } else if (a + 1 == n) {
                    m = str[a] == '0' ? 'P' : 'K';
                    a++;
                } else {
                    if (str[a] == '1') {
                        m = 'N';
                        a++;
                    } else {
                        m = str[a+1] == '0' ? 'P' : 'K';
                        a += 2;
                    }
                }
            } else {
                passinfo = a < res.size() || (a == res.size() && name[0] == 'A');
                if (passinfo) {
                    m = str[a] == '0' ? 'N' : 'K';
                    a++;
                } else {
                    if (score == 1) {
                        m = 'N';
                    } else {
                        m = 'K';
                    }
                }
                // if (score == 1) {
                //     m = 'N';
                // } else { // score == -1
                //     if (a < n) {
                //         m = str[a] == '0' ? 'N' : 'K';
                //         a++;
                //     } else {
                //         m = 'K';
                //     }
                // }
            }
            cout << m << endl;
            cout.flush();
            cin >> r;

            if (score == 0) {
                if (res.size() == n) {
                    //
                } else if (res.size() + 1 == n) {
                    res += r == 'P' ? '0' : '1';
                } else {
                    if (r == 'N') {
                        res += '1';
                    } else if (r == 'P') {
                        res += "00";
                    } else {
                        res += "01";
                    }
                }
            } else {
                if (passinfo) {
                    //
                } else {
                    if (res.size() < n) {
                        res += r == 'N' ? '0' : '1';
                    }
                }
                // if (score == 1) {
                //     if (res.size() < n) {
                //         res += r == 'N' ? '0' : '1';
                //     }
                // } else { // score == -1
                //     // 
                // }
            }
            string mr = "";
            mr += m;
            mr += r;
            cnt[mr]++;
            if (m != r) {
                if (mr == "PK" || mr == "KN" || mr == "NP") {
                    score++;
                } else {
                    score--;
                }
            }
        }
        for (int i = 0; i < n; i++) {
            res[i] ^= x[i];
        }
        // cerr << ab << endl;
        cout << "! " << res << endl;
        cout.flush();
    }
    return 0;
}