結果
問題 | No.624 Santa Claus and The Last Dungeon |
ユーザー | pekempey |
提出日時 | 2017-12-24 17:29:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,062 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 115,768 KB |
実行使用メモリ | 40,996 KB |
最終ジャッジ日時 | 2024-07-16 15:32:06 |
合計ジャッジ時間 | 7,888 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <random> #include <array> #include <queue> #include <tuple> #include <cstdlib> using namespace std; vector<string> ans; array<int, 3> ask(vector<string> q) { for (int i = 0; i < q.size(); i++) { if (i != 0) cout << ' '; cout << q[i]; } cout << endl; array<int, 3> res; for (int i = 0; i < 3; i++) { cin >> res[i]; } if (res[2] == 100) { exit(0); } return res; } int ask_uniform(int val, const vector<int> &pos, int l, int r, bool low) { vector<string> query(100, "??"); for (int i = l; i < r; i++) { query[pos[i]][low] = val + '0'; } return ask(query)[1]; } pair<int, int> ask_uniform2(int v, const vector<int> &pos, int l0, int r0, int l1, int r1) { vector<string> query(100, "??"); for (int i = l0; i < r0; i++) { query[pos[i]][0] = (ans[pos[i]][0] - '0' + 1) % 10 + '0'; query[pos[i]][1] = v + '0'; } for (int i = l1; i < r1; i++) { query[pos[i]][0] = ans[pos[i]][0]; query[pos[i]][1] = v + '0'; } auto res = ask(query); return {res[1] - (r1 - l1 - res[2]), res[2]}; } void rec(const vector<int> &pos, int l, int r, int v, int c, bool low) { if (c == 0) return; if (r - l == c) { for (int i = l; i < r; i++) { ans[pos[i]][low] = v + '0'; } return; } int m = (l + r) / 2; int c0 = ask_uniform(v, pos, l, m, low); int c1 = c - c0; rec(pos, l, m, v, c0, low); rec(pos, m, r, v, c1, low); } int main() { ans.resize(100, "??"); int q; cin >> q; for (int i = 0; i < 10; i++) { vector<int> pos; for (int k = 0; k < 100; k++) { if (ans[k][0] == '?') { pos.push_back(k); } } rec(pos, 0, pos.size(), i, 10, false); } for (int v = 0; v < 10; v++) { vector<int> pos; for (int k = 0; k < 100; k++) { if (ans[k][1] == '?') { pos.push_back(k); } } queue<tuple<int, int, int>> q; q.emplace(0, pos.size(), 10); auto get = [&]() -> tuple<int, int, int> { while (!q.empty()) { int l, r, c; tie(l, r, c) = q.front(); q.pop(); if (r - l == c) { for (int i = l; i < r; i++) { ans[pos[i]][0] = v + '0'; } continue; } return make_tuple(l, r, c); } return make_tuple(-1, -1, -1); }; while (!q.empty()) { int l, r, c; int ll, rr, cc; tie(l, r, c) = get(); tie(ll, rr, cc) = get(); int m = (l + r) / 2; int mm = (ll + rr) / 2; if (ll == -1) { int c0 = ask_uniform(v, pos, l, m, true); int c1 = c - c0; if (c0 > 0) q.emplace(l, m, c0); if (c1 > 0) q.emplace(m, r, c1); } else { int c0, cc0; tie(c0, cc0) = ask_uniform2(v, pos, l, m, ll, mm); int c1 = c - c0; int cc1 = cc - cc0; if (c0 > 0) q.emplace(l, m, c0); if (c1 > 0) q.emplace(m, r, c1); if (cc0 > 0) q.emplace(ll, mm, cc0); if (cc1 > 0) q.emplace(mm, rr, cc1); } } } ask(ans); }