#include // clang-format off using namespace std; using ll=long long; using ull=unsigned long long; using pll=pair; const ll INF=4e18; void print0(){}; template void print0(H h,T... t){cout<void print(H h,T... t){print0(h);if(sizeof...(T)>0)print0(" ");print(t...);} void perr0(){}; template void perr0(H h,T... t){cerr<void perr(H h,T... t){perr0(h);if(sizeof...(T)>0)perr0(" ");perr(t...);} void ioinit() { cout< zaiko; vector ninki; int money; }; struct operation_t { int kind; int x; vector send; }; struct response_t { int money; vector sell; vector ninki; vector zaiko; }; operation_t selectop(int turn, state_t& state, vector>& history) { if (turn == 0) { return operation_t{2, 2, vector()}; } if (turn == 1) { vector send(N, 3); return operation_t{1, 0, send}; } // 0.5Riにする、最低3冊置いとく // 前週の売上を見る vector send(N); for (int shop = 0; shop < N; shop++) { int lastsell = history[turn - 1].second.sell[shop]; // r=(state.zaiko[shop] + snd); // lastsell >= 0.5r int left = 0; int right = 9999999; int result = 0; while (left <= right) { int snd = (left + right) / 2; int r = (state.zaiko[shop] + snd); if (r / 2 <= lastsell) { result = snd; left = snd + 1; } else { right = snd - 1; } } result = max(3 - state.zaiko[shop], result); send[shop] = result; } return operation_t{1, 0, send}; } response_t output(operation_t& op) { if (op.kind == 1) { cout << "1"; for (int l : op.send) { cout << " " << l; } cout << endl; } else { cout << "2 " << op.x << endl; } response_t res; cin >> res.money; res.sell.resize(N); res.ninki.resize(N); res.zaiko.resize(N); for (int shop = 0; shop < N; shop++) { cin >> res.sell[shop]; } for (int shop = 0; shop < N; shop++) { cin >> res.ninki[shop]; } for (int shop = 0; shop < N; shop++) { cin >> res.zaiko[shop]; } return res; } void solve(state_t state) { vector> history; for (int turn = 0; turn < T; turn++) { auto op = selectop(turn, state, history); auto resp = output(op); history.push_back({op, resp}); state.money = resp.money; state.zaiko = resp.zaiko; } } int main() { ioinit(); int _t, _n, _m; cin >> _t >> _n >> _m; state_t state; state.zaiko.resize(N, 0); state.ninki.resize(N, 0); state.money = _m; solve(state); return 0; }