結果

問題 No.282 おもりと天秤(2)
ユーザー t98slidert98slider
提出日時 2023-02-23 19:25:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,139 ms / 5,000 ms
コード長 2,153 bytes
コンパイル時間 2,738 ms
コンパイル使用メモリ 189,792 KB
実行使用メモリ 25,580 KB
平均クエリ数 455.46
最終ジャッジ日時 2024-07-23 13:43:35
合計ジャッジ時間 32,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,964 KB
testcase_01 AC 42 ms
24,836 KB
testcase_02 AC 26 ms
24,580 KB
testcase_03 AC 26 ms
24,836 KB
testcase_04 AC 27 ms
25,220 KB
testcase_05 AC 32 ms
25,204 KB
testcase_06 AC 46 ms
24,580 KB
testcase_07 AC 25 ms
25,220 KB
testcase_08 AC 48 ms
24,964 KB
testcase_09 AC 22 ms
24,964 KB
testcase_10 AC 822 ms
24,964 KB
testcase_11 AC 2,953 ms
24,964 KB
testcase_12 AC 1,310 ms
24,964 KB
testcase_13 AC 1,750 ms
24,836 KB
testcase_14 AC 2,571 ms
24,836 KB
testcase_15 AC 3,001 ms
25,220 KB
testcase_16 AC 204 ms
25,220 KB
testcase_17 AC 1,603 ms
24,964 KB
testcase_18 AC 2,235 ms
24,964 KB
testcase_19 AC 2,347 ms
24,964 KB
testcase_20 AC 3,001 ms
25,580 KB
testcase_21 AC 3,139 ms
25,452 KB
testcase_22 AC 1,587 ms
24,556 KB
testcase_23 AC 22 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<deque<int>> tb(n);
    for(int i = 0; i < n; i++) tb[i].push_back(i);
    while(tb.size() >= 2){
        vector<deque<int>> nxt((tb.size() + 1) / 2);
        if(tb.size() & 1) nxt.back() = tb.back();
        bool flag = true;
        while(flag){
            flag = false;
            vector<int> query(2 * n);
            for(int i = 0; i + 1 < tb.size(); i += 2){
                if(tb[i].empty() || tb[i + 1].empty()){
                    int to = i / 2;
                    nxt[to].insert(nxt[to].end(), tb[i].begin(), tb[i].end());
                    nxt[to].insert(nxt[to].end(), tb[i + 1].begin(), tb[i + 1].end());
                    tb[i].clear();
                    tb[i + 1].clear();
                    continue;
                }
                flag = true;
                query[i] = tb[i].front() + 1;
                query[i + 1] = tb[i + 1].front() + 1;
            }
            if(!flag) break;
            cout << "?";
            for(int i = 0; i < 2 * n; i++) cout << " " << query[i];
            cout << endl;
            char c;
            int cnt = n;
            for(int i = 0; i + 1 < tb.size(); i += 2){
                cin >> c;
                cnt--;
                if(tb[i].empty() || tb[i + 1].empty())continue;
                int to = i / 2;
                if(c == '='){
                    nxt[to].push_back(tb[i].front());
                    nxt[to].push_back(tb[i + 1].front());
                    tb[i].pop_front();
                    tb[i + 1].pop_front();
                }else if(c == '<'){
                    nxt[to].push_back(tb[i].front());
                    tb[i].pop_front();
                }else{
                    nxt[to].push_back(tb[i + 1].front());
                    tb[i + 1].pop_front();
                }
            }
            while(cnt--) cin >> c;
        }
        swap(tb, nxt);
    }
    cout << "!";
    for(int i = 0; i < tb[0].size(); i++){
        cout << " " << tb[0][i] + 1;
    }
    cout << endl;
}
0